Home
last modified time | relevance | path

Searched refs:colorData (Results 1 – 11 of 11) sorted by relevance

/haiku/src/add-ons/accelerants/s3/
H A Dtrio64_mode.cpp304 Trio64_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in Trio64_SetIndexedColors() argument
315 colorData[0] >> 2, // red in Trio64_SetIndexedColors()
316 colorData[1] >> 2, // green in Trio64_SetIndexedColors()
317 colorData[2] >> 2); // blue in Trio64_SetIndexedColors()
318 colorData += 3; in Trio64_SetIndexedColors()
H A Dsavage_mode.cpp834 Savage_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in Savage_SetIndexedColors() argument
845 colorData[0], // red in Savage_SetIndexedColors()
846 colorData[1], // green in Savage_SetIndexedColors()
847 colorData[2]); // blue in Savage_SetIndexedColors()
848 colorData += 3; in Savage_SetIndexedColors()
H A Dvirge_mode.cpp758 Virge_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in Virge_SetIndexedColors() argument
769 colorData[0] >> 2, // red in Virge_SetIndexedColors()
770 colorData[1] >> 2, // green in Virge_SetIndexedColors()
771 colorData[2] >> 2); // blue in Virge_SetIndexedColors()
772 colorData += 3; in Virge_SetIndexedColors()
/haiku/src/add-ons/accelerants/intel_810/
H A Di810_mode.cpp269 I810_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in I810_SetIndexedColors() argument
282 OUTREG8(DAC_DATA, colorData[0]); // red in I810_SetIndexedColors()
283 OUTREG8(DAC_DATA, colorData[1]); // green in I810_SetIndexedColors()
284 OUTREG8(DAC_DATA, colorData[2]); // blue in I810_SetIndexedColors()
286 colorData += 3; in I810_SetIndexedColors()
/haiku/src/add-ons/accelerants/3dfx/
H A D3dfx_mode.cpp381 TDFX_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in TDFX_SetIndexedColors() argument
393 uint32 color = ((colorData[0] << 16) | (colorData[1] << 8) | colorData[2]); in TDFX_SetIndexedColors()
399 colorData += 3; in TDFX_SetIndexedColors()
/haiku/src/add-ons/accelerants/ati/
H A Drage128_mode.cpp426 Rage128_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in Rage128_SetIndexedColors() argument
441 OUTREG(R128_PALETTE_DATA, ((colorData[0] << 16) // red in Rage128_SetIndexedColors()
442 | (colorData[1] << 8) // green in Rage128_SetIndexedColors()
443 | colorData[2])); // blue in Rage128_SetIndexedColors()
444 colorData += 3; in Rage128_SetIndexedColors()
H A Dmach64_mode.cpp391 Mach64_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) in Mach64_SetIndexedColors() argument
404 OUTREG8(DAC_DATA, colorData[0]); // red in Mach64_SetIndexedColors()
405 OUTREG8(DAC_DATA, colorData[1]); // green in Mach64_SetIndexedColors()
406 OUTREG8(DAC_DATA, colorData[2]); // blue in Mach64_SetIndexedColors()
408 colorData += 3; in Mach64_SetIndexedColors()
/haiku/src/add-ons/translators/psd/
H A DPSDLoader.cpp303 uint8 *colorData = new uint8[fColorModeDataSize]; in Decode() local
305 fStream->Read(colorData, fColorModeDataSize); in Decode()
310 uint8 *redPalette = colorData; in Decode()
311 uint8 *greenPalette = colorData + paletteSize; in Decode()
312 uint8 *bluePalette = colorData + paletteSize * 2; in Decode()
328 delete[] colorData; in Decode()
/haiku/src/add-ons/accelerants/vesa/
H A Daccelerant_protos.h39 void vesa_set_indexed_colors(uint count, uint8 first, uint8 *colorData,
/haiku/src/add-ons/accelerants/intel_extreme/
H A Daccelerant_protos.h47 void intel_set_indexed_colors(uint count, uint8 first, uint8* colorData,
/haiku/headers/os/add-ons/graphics/
H A DAccelerant.h303 const uint8* colorData, uint32 flags);