Home | History | Annotate | Download | only in video

Lines Matching refs:Pixel

186             Uint32 Pixel; \
188 DISEMBLE_RGBA((Uint8 *)src, 4, srcfmt, Pixel, \
336 unsigned short Pixel = *((unsigned short *)src); \
337 sR = (Pixel >> 8) & 0xf8; \
338 sG = (Pixel >> 3) & 0xfc; \
339 sB = (Pixel << 3) & 0xf8; \
481 unsigned short Pixel = *((unsigned short *)src); \
482 sR = (Pixel >> 7) & 0xf8; \
483 sG = (Pixel >> 2) & 0xf8; \
484 sB = (Pixel << 3) & 0xf8; \
588 Uint32 Pixel; \
590 DISEMBLE_RGBA((Uint8 *)srcp, srcbpp, srcfmt, Pixel, \
592 if ( (Pixel & rgbmask) != ckey ) { \
602 Uint32 Pixel; \
604 RETRIEVE_RGB_PIXEL((Uint8 *)srcp, srcbpp, Pixel); \
605 if ( Pixel != ckey ) { \
606 RGB_FROM_PIXEL(Pixel, srcfmt, sR, sG, sB); \
900 /* Pack RGB into 8bit pixel */
925 int Pixel;
930 RGB888_RGB332(Pixel, *src);
931 *dst++ = map[Pixel];
936 /* Pack RGB into 8bit pixel */
937 RGB888_RGB332(Pixel, *src);
938 *dst++ = map[Pixel];
940 RGB888_RGB332(Pixel, *src);
941 *dst++ = map[Pixel];
943 RGB888_RGB332(Pixel, *src);
944 *dst++ = map[Pixel];
946 RGB888_RGB332(Pixel, *src);
947 *dst++ = map[Pixel];
952 RGB888_RGB332(Pixel, *src);
953 *dst++ = map[Pixel];
956 RGB888_RGB332(Pixel, *src);
957 *dst++ = map[Pixel];
960 RGB888_RGB332(Pixel, *src);
961 *dst++ = map[Pixel];
1027 /* Copy in 4 pixel chunks */
1058 /* Copy in 4 pixel chunks */
1147 /* Copy in 4 pixel chunks */
1178 /* Copy in 4 pixel chunks */
1247 /* Copy in 4 pixel chunks */
1834 int Pixel;
1853 RGB888_RGB332(Pixel, *src);
1854 *dst++ = map[Pixel];
1863 /* Pack RGB into 8bit pixel */
1864 RGB888_RGB332(Pixel, *src);
1865 *dst++ = map[Pixel];
1867 RGB888_RGB332(Pixel, *src);
1868 *dst++ = map[Pixel];
1870 RGB888_RGB332(Pixel
1871 *dst++ = map[Pixel];
1873 RGB888_RGB332(Pixel, *src);
1874 *dst++ = map[Pixel];
1879 RGB888_RGB332(Pixel, *src);
1880 *dst++ = map[Pixel];
1883 RGB888_RGB332(Pixel, *src);
1884 *dst++ = map[Pixel];
1887 RGB888_RGB332(Pixel, *src);
1888 *dst++ = map[Pixel];
1907 Uint32 Pixel;
1926 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel,
1929 /* Pack RGB into 8bit pixel */
1939 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel,
1942 /* Pack RGB into 8bit pixel */
1958 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel,
1961 /* Pack RGB into 8bit pixel */
1971 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel,
1974 /* Pack RGB into 8bit pixel */
2051 Uint32 Pixel;
2055 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
2083 Uint32 Pixel;
2085 DISEMBLE_RGBA(src, srcbpp, srcfmt, Pixel,
2110 Uint32 Pixel;
2121 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel,
2123 if ( (Pixel & rgbmask) != ckey ) {
2124 /* Pack RGB into 8bit pixel */
2140 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel,
2142 if ( (Pixel & rgbmask) != ckey ) {
2143 /* Pack RGB into 8bit pixel */
2211 Uint32 Pixel;
2215 RETRIEVE_RGB_PIXEL(src, srcbpp, Pixel);
2216 if ( (Pixel & rgbmask) != ckey ) {
2217 RGB_FROM_PIXEL(Pixel, srcfmt, sR, sG, sB);
2245 Uint32 Pixel;
2257 DISEMBLE_RGBA(src, srcbpp, srcfmt, Pixel,
2259 if ( (Pixel & rgbmask) != ckey ) {