Searched refs:Pixel (Results 1 – 9 of 9) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/src/video/ |
D | SDL_blit.h | 89 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \ argument 91 r = (((Pixel&fmt->Rmask)>>fmt->Rshift)<<fmt->Rloss); \ 92 g = (((Pixel&fmt->Gmask)>>fmt->Gshift)<<fmt->Gloss); \ 93 b = (((Pixel&fmt->Bmask)>>fmt->Bshift)<<fmt->Bloss); \ 95 #define RGB_FROM_RGB565(Pixel, r, g, b) \ argument 97 r = (((Pixel&0xF800)>>11)<<3); \ 98 g = (((Pixel&0x07E0)>>5)<<2); \ 99 b = ((Pixel&0x001F)<<3); \ 101 #define RGB_FROM_RGB555(Pixel, r, g, b) \ argument 103 r = (((Pixel&0x7C00)>>10)<<3); \ [all …]
|
D | SDL_blit_N.c | 186 Uint32 Pixel; \ in Blit_RGB888_RGB565Altivec() 188 DISEMBLE_RGBA((Uint8 *)src, 4, srcfmt, Pixel, \ in Blit_RGB888_RGB565Altivec() 336 unsigned short Pixel = *((unsigned short *)src); \ in Blit_RGB565_32Altivec() 337 sR = (Pixel >> 8) & 0xf8; \ in Blit_RGB565_32Altivec() 338 sG = (Pixel >> 3) & 0xfc; \ in Blit_RGB565_32Altivec() 339 sB = (Pixel << 3) & 0xf8; \ in Blit_RGB565_32Altivec() 481 unsigned short Pixel = *((unsigned short *)src); \ in Blit_RGB555_32Altivec() 482 sR = (Pixel >> 7) & 0xf8; \ in Blit_RGB555_32Altivec() 483 sG = (Pixel >> 2) & 0xf8; \ in Blit_RGB555_32Altivec() 484 sB = (Pixel << 3) & 0xf8; \ in Blit_RGB555_32Altivec() [all …]
|
D | SDL_blit_A.c | 83 Uint32 Pixel; in BlitNto1SurfaceAlpha() 90 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB); in BlitNto1SurfaceAlpha() 135 Uint32 Pixel; in BlitNto1PixelAlpha() 143 DISEMBLE_RGBA(src,srcbpp,srcfmt,Pixel,sR,sG,sB,sA); in BlitNto1PixelAlpha() 190 Uint32 Pixel; in BlitNto1SurfaceAlphaKey() 197 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB); in BlitNto1SurfaceAlphaKey() 198 if ( Pixel != ckey ) { in BlitNto1SurfaceAlphaKey() 856 Uint32 Pixel; \ in Blit32to565PixelAlphaAltivec() 858 DISEMBLE_RGBA(src, 4, srcfmt, Pixel, sR, sG, sB, sA); \ in Blit32to565PixelAlphaAltivec() 991 Uint32 Pixel; \ in Blit32to32SurfaceAlphaKeyAltivec() [all …]
|
/external/webkit/WebCore/plugins/gtk/ |
D | gtk2xtbin.h | 136 Pixel border_pixel; /* window border pixel */ 145 Pixel background_pixel; /* window background pixel */
|
/external/giflib/ |
D | dgif_lib.c | 472 GifPixelType Pixel) { argument 492 if (DGifDecompressLine(GifFile, &Pixel, 1) == GIF_OK) {
|
/external/grub/ |
D | ChangeLog | 3447 Reported by Jan Fricke <fricke@uni-greifswald.de> and Pixel 4585 From Pixel <pixel@mandrakesoft.com>: 4958 of ENTRYNO. Reported by Pixel <pixel@mandrakesoft.com>.
|
/external/webkit/WebKitTools/ |
D | ChangeLog-2009-06-16 | 2930 Fix Bug 23869: Pixel tests can't be run on Windows 4106 Pixel tests should use a default tolerance of 0.1% on Leopard and 1.0%
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-12-31 | 40083 Pixel test: fast/backgrounds/solid-color-context-restore.html 50103 Pixel test: fast/block/float/nopaint-after-layer-destruction.html 50279 Fix for <rdar://problem/4567520> Pixel cracks in weather widget at
|
D | ChangeLog-2009-06-16 | 32581 painting. Pixel tests caught this regression.
|