Lines Matching refs:Pixel
244 Uint32 Pixel; \ in Blit_RGB888_RGB565Altivec()
246 DISEMBLE_RGBA((Uint8 *)src, 4, srcfmt, Pixel, \ in Blit_RGB888_RGB565Altivec()
394 unsigned short Pixel = *((unsigned short *)src); \ in Blit_RGB565_32Altivec()
395 sR = (Pixel >> 8) & 0xf8; \ in Blit_RGB565_32Altivec()
396 sG = (Pixel >> 3) & 0xfc; \ in Blit_RGB565_32Altivec()
397 sB = (Pixel << 3) & 0xf8; \ in Blit_RGB565_32Altivec()
541 unsigned short Pixel = *((unsigned short *)src); \ in Blit_RGB555_32Altivec()
542 sR = (Pixel >> 7) & 0xf8; \ in Blit_RGB555_32Altivec()
543 sG = (Pixel >> 2) & 0xf8; \ in Blit_RGB555_32Altivec()
544 sB = (Pixel << 3) & 0xf8; \ in Blit_RGB555_32Altivec()
654 Uint32 Pixel; \ in Blit32to32KeyAltivec()
656 DISEMBLE_RGBA((Uint8 *)srcp, srcbpp, srcfmt, Pixel, \ in Blit32to32KeyAltivec()
658 if ( (Pixel & rgbmask) != ckey ) { \ in Blit32to32KeyAltivec()
668 Uint32 Pixel; \ in Blit32to32KeyAltivec()
670 RETRIEVE_RGB_PIXEL((Uint8 *)srcp, srcbpp, Pixel); \ in Blit32to32KeyAltivec()
671 if ( Pixel != ckey ) { \ in Blit32to32KeyAltivec()
672 RGB_FROM_PIXEL(Pixel, srcfmt, sR, sG, sB); \ in Blit32to32KeyAltivec()
1044 int Pixel; in Blit_RGB888_index8() local
1050 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1051 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1058 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1059 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1061 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1062 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1064 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1065 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1067 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1068 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1073 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1074 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1077 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1078 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1081 RGB888_RGB332(Pixel, *src); in Blit_RGB888_index8()
1082 *dst++ = map[Pixel]; in Blit_RGB888_index8()
1154 int Pixel; in Blit_RGB101010_index8() local
1160 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1161 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1168 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1169 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1171 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1172 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1174 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1175 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1177 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1178 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1183 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1184 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1187 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1188 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
1191 RGB101010_RGB332(Pixel, *src); in Blit_RGB101010_index8()
1192 *dst++ = map[Pixel]; in Blit_RGB101010_index8()
2089 Uint32 Pixel; in BlitNto1() local
2109 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, in BlitNto1()
2123 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB); in BlitNto1()
2141 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, in BlitNto1()
2155 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB); in BlitNto1()
2255 int Pixel = 0x04030201; /* identity permutation */ in get_permutation() local
2257 int Pixel = 0x01020304; /* identity permutation */ in get_permutation() local
2263 RGBA_FROM_PIXEL(Pixel, srcfmt, p0, p1, p2, p3); in get_permutation()
2265 RGB_FROM_PIXEL(Pixel, srcfmt, p0, p1, p2); in get_permutation()
2271 PIXEL_FROM_RGBA(Pixel, dstfmt, p0, p1, p2, p3); in get_permutation()
2273 PIXEL_FROM_RGBA(Pixel, dstfmt, p0, p1, p2, 0); in get_permutation()
2276 PIXEL_FROM_RGB(Pixel, dstfmt, p0, p1, p2); in get_permutation()
2280 p0 = Pixel & 0xFF; in get_permutation()
2281 p1 = (Pixel >> 8) & 0xFF; in get_permutation()
2282 p2 = (Pixel >> 16) & 0xFF; in get_permutation()
2283 p3 = (Pixel >> 24) & 0xFF; in get_permutation()
2285 p3 = Pixel & 0xFF; in get_permutation()
2286 p2 = (Pixel >> 8) & 0xFF; in get_permutation()
2287 p1 = (Pixel >> 16) & 0xFF; in get_permutation()
2288 p0 = (Pixel >> 24) & 0xFF; in get_permutation()
2432 Uint32 Pixel; in BlitNtoN()
2436 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB); in BlitNtoN()
2494 Uint32 Pixel; in BlitNtoNCopyAlpha() local
2496 DISEMBLE_RGBA(src, srcbpp, srcfmt, Pixel, sR, sG, sB, sA); in BlitNtoNCopyAlpha()
2520 Uint32 Pixel; in BlitNto1Key() local
2532 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, in BlitNto1Key()
2534 if ( (Pixel & rgbmask) != ckey ) { in BlitNto1Key()
2553 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, in BlitNto1Key()
2555 if ( (Pixel & rgbmask) != ckey ) { in BlitNto1Key()
2859 Uint32 Pixel; in BlitNtoNKey()
2863 RETRIEVE_RGB_PIXEL(src, srcbpp, Pixel); in BlitNtoNKey()
2864 if ( (Pixel & rgbmask) != ckey ) { in BlitNtoNKey()
2865 RGB_FROM_PIXEL(Pixel, srcfmt, sR, sG, sB); in BlitNtoNKey()
2894 Uint32 Pixel; in BlitNtoNKeyCopyAlpha() local
2967 DISEMBLE_RGBA(src, srcbpp, srcfmt, Pixel, sR, sG, sB, sA); in BlitNtoNKeyCopyAlpha()
2968 if ( (Pixel & rgbmask) != ckey ) { in BlitNtoNKeyCopyAlpha()
2993 Uint32 Pixel; in Blit2101010toN() local
3000 Pixel = *(Uint32 *)src; in Blit2101010toN()
3001 RGBA_FROM_ARGB2101010(Pixel, sR, sG, sB, sA); in Blit2101010toN()
3025 Uint32 Pixel; in BlitNto2101010() local
3032 DISEMBLE_RGBA(src, srcbpp, srcfmt, Pixel, sR, sG, sB, sA); in BlitNto2101010()
3033 ARGB2101010_FROM_RGBA(Pixel, sR, sG, sB, sA); in BlitNto2101010()
3034 *(Uint32 *)dst = Pixel; in BlitNto2101010()