HomeSort by relevance Sort by last modified time
    Searched refs:Pixel (Results 1 - 7 of 7) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit.h 87 /* Load pixel of the specified format from a buffer and get its R-G-B values */
89 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \
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) \
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)
    [all...]
SDL_blit_N.c 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;
    [all...]
SDL_blit_A.c 83 Uint32 Pixel;
90 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
98 /* Pack RGB into 8bit pixel */
117 /* N->1 blending with pixel alpha */
135 Uint32 Pixel;
143 DISEMBLE_RGBA(src,srcbpp,srcfmt,Pixel,sR,sG,sB,sA);
151 /* Pack RGB into 8bit pixel */
190 Uint32 Pixel;
197 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
198 if ( Pixel != ckey )
    [all...]
  /external/webkit/WebCore/plugins/gtk/
gtk2xtbin.h 136 Pixel border_pixel; /* window border pixel */
145 Pixel background_pixel; /* window background pixel */
  /frameworks/base/libs/rs/java/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 68 static class Pixel {
179 mPixelType = Type.createFromClass(mRS, Pixel.class, 1, "Pixel");
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java     [all...]
  /external/giflib/
dgif_lib.c 468 * Put one pixel (Pixel) into GIF file.
472 GifPixelType Pixel) {
492 if (DGifDecompressLine(GifFile, &Pixel, 1) == GIF_OK) {
714 Private->StackPtr = 0; /* No pixels on the pixel stack. */
767 * decoding as soon as we got all the pixel, or EOF code will
768 * not be read at all, and DGifGetLine/Pixel clean everything. */
783 /* Its regular code - if in pixel range simply add it to output
785 * is in pixel range: */
787 /* This is simple - its pixel scalar, so add it to output: *
    [all...]

Completed in 162 milliseconds