/haiku/src/add-ons/accelerants/s3/ |
H A D | trio64_mode.cpp | 304 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 D | savage_mode.cpp | 834 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 D | virge_mode.cpp | 758 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 D | i810_mode.cpp | 269 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 D | 3dfx_mode.cpp | 381 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 D | rage128_mode.cpp | 426 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 D | mach64_mode.cpp | 391 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 D | PSDLoader.cpp | 303 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 D | accelerant_protos.h | 39 void vesa_set_indexed_colors(uint count, uint8 first, uint8 *colorData,
|
/haiku/src/add-ons/accelerants/intel_extreme/ |
H A D | accelerant_protos.h | 47 void intel_set_indexed_colors(uint count, uint8 first, uint8* colorData,
|
/haiku/headers/os/add-ons/graphics/ |
H A D | Accelerant.h | 303 const uint8* colorData, uint32 flags);
|