Searched refs:Pixel (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_blit.h | 123 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \ argument 125 r = SDL_expand_byte[fmt->Rloss][((Pixel&fmt->Rmask)>>fmt->Rshift)]; \ 126 g = SDL_expand_byte[fmt->Gloss][((Pixel&fmt->Gmask)>>fmt->Gshift)]; \ 127 b = SDL_expand_byte[fmt->Bloss][((Pixel&fmt->Bmask)>>fmt->Bshift)]; \ 129 #define RGB_FROM_RGB565(Pixel, r, g, b) \ argument 131 r = SDL_expand_byte[3][((Pixel&0xF800)>>11)]; \ 132 g = SDL_expand_byte[2][((Pixel&0x07E0)>>5)]; \ 133 b = SDL_expand_byte[3][(Pixel&0x001F)]; \ 135 #define RGB_FROM_RGB555(Pixel, r, g, b) \ argument 137 r = SDL_expand_byte[3][((Pixel&0x7C00)>>10)]; \ [all …]
|
A D | SDL_blit_N.c | 244 Uint32 Pixel; \ in Blit_RGB888_RGB565Altivec() 1044 int Pixel; in Blit_RGB888_index8() local 1154 int Pixel; in Blit_RGB101010_index8() local 2089 Uint32 Pixel; in BlitNto1() local 2280 p0 = Pixel & 0xFF; in get_permutation() 2285 p3 = Pixel & 0xFF; in get_permutation() 2432 Uint32 Pixel; in BlitNtoN() 2520 Uint32 Pixel; in BlitNto1Key() local 2894 Uint32 Pixel; in BlitNtoNKeyCopyAlpha() local 2993 Uint32 Pixel; in Blit2101010toN() local [all …]
|
A D | SDL_blit_A.c | 44 Uint32 Pixel; in BlitNto1SurfaceAlpha() local 91 Uint32 Pixel; in BlitNto1PixelAlpha() local 99 DISEMBLE_RGBA(src,srcbpp,srcfmt,Pixel,sR,sG,sB,sA); in BlitNto1PixelAlpha() 138 Uint32 Pixel; in BlitNto1SurfaceAlphaKey() local 148 if ( Pixel != ckey ) { in BlitNto1SurfaceAlphaKey() 1225 Uint32 Pixel; in BlitNtoNSurfaceAlpha() local 1265 Uint32 Pixel; in BlitNtoNSurfaceAlphaKey() local 1274 RETRIEVE_RGB_PIXEL(src, srcbpp, Pixel); in BlitNtoNSurfaceAlphaKey() 1275 if(sA && Pixel != ckey) { in BlitNtoNSurfaceAlphaKey() 1276 RGB_FROM_PIXEL(Pixel, srcfmt, sR, sG, sB); in BlitNtoNSurfaceAlphaKey() [all …]
|
A D | SDL_RLEaccel.c | 379 #define RLEPIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a) \ argument 381 Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | pngstest.c | 793 } Pixel; typedef 1303 gpc_g8(Pixel *out, const Pixel *in, const Background *back) in gpc_g8() 1319 gpc_g8b(Pixel *out, const Pixel *in, const Background *back) in gpc_g8b() 1348 gpc_lin(Pixel *out, const Pixel *in, const Background *back) in gpc_lin() 1384 gpc_pre(Pixel *out, const Pixel *in, const Background *back) in gpc_pre() 1796 gpc_sG(Pixel *out, const Pixel *in, const Background *back) in gpc_sG() 1902 gpc_A(Pixel *out, const Pixel *in, const Background *back) in gpc_A() 1932 (Pixel *out, const Pixel *in, const Background *back) = 1959 (Pixel *out, const Pixel *in, const Background *back) = 1976 (Pixel *out, const Pixel *in, const Background *back) = [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/addtiffo/ |
A D | README | 72 Samples/Pixel: 1 81 Samples/Pixel: 1 90 Samples/Pixel: 1 99 Samples/Pixel: 1 108 Samples/Pixel: 1
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/acceleration/configuration/ |
A D | configuration.proto | 55 // The EdgeTpu in Pixel devices.
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | README | 493 - Pixel blend routine patches contributed by mitja at lxnav dot com -
|
Completed in 24 milliseconds