/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_blit_N.c | 80 #define MAKE8888(dstfmt, r, g, b, a) \ 81 ( ((r<<dstfmt->Rshift)&dstfmt->Rmask) | \ 82 ((g<<dstfmt->Gshift)&dstfmt->Gmask) | \ 83 ((b<<dstfmt->Bshift)&dstfmt->Bmask) | \ 84 ((a<<dstfmt->Ashift)&dstfmt->Amask) ) 105 const SDL_PixelFormat *dstfmt) 258 SDL_PixelFormat *dstfmt = info->dst; local 403 SDL_PixelFormat *dstfmt = info->dst; local 551 SDL_PixelFormat *dstfmt = info->dst; local 664 SDL_PixelFormat *dstfmt = info->dst; local 742 SDL_PixelFormat *dstfmt = info->dst; local 1999 SDL_PixelFormat *dstfmt = info->dst; local 2044 SDL_PixelFormat *dstfmt = info->dst; local 2076 SDL_PixelFormat *dstfmt = info->dst; local 2199 SDL_PixelFormat *dstfmt = info->dst; local 2240 SDL_PixelFormat *dstfmt = info->dst; local 2376 SDL_PixelFormat *dstfmt; local [all...] |
SDL_blit_1.c | 414 SDL_PixelFormat *dstfmt = info->dst; local 420 dstbpp = dstfmt->BytesPerPixel; 431 DISEMBLE_RGB(dst, dstbpp, dstfmt, 434 ASSEMBLE_RGB(dst, dstbpp, dstfmt, dR, dG, dB); 453 SDL_PixelFormat *dstfmt = info->dst; local 460 dstbpp = dstfmt->BytesPerPixel; 472 DISEMBLE_RGB(dst, dstbpp, dstfmt, 475 ASSEMBLE_RGB(dst, dstbpp, dstfmt, dR, dG, dB); 497 SDL_PixelFormat *dstfmt; local 499 dstfmt = surface->map->dst->format [all...] |
SDL_blit_A.c | 75 SDL_PixelFormat *dstfmt = info->dst; local 91 dR = dstfmt->palette->colors[*dst].r; 92 dG = dstfmt->palette->colors[*dst].g; 93 dB = dstfmt->palette->colors[*dst].b; 128 SDL_PixelFormat *dstfmt = info->dst; local 144 dR = dstfmt->palette->colors[*dst].r; 145 dG = dstfmt->palette->colors[*dst].g; 146 dB = dstfmt->palette->colors[*dst].b; 181 SDL_PixelFormat *dstfmt = info->dst; local 199 dR = dstfmt->palette->colors[*dst].r 946 SDL_PixelFormat *dstfmt = info->dst; local 1069 SDL_PixelFormat *dstfmt = info->dst; local 1263 SDL_PixelFormat *dstfmt = info->dst; local 2596 SDL_PixelFormat *dstfmt = info->dst; local 2637 SDL_PixelFormat *dstfmt = info->dst; local 2680 SDL_PixelFormat *dstfmt = info->dst; local [all...] |
SDL_blit_0.c | 352 SDL_PixelFormat *dstfmt = info->dst; local 358 dstbpp = dstfmt->BytesPerPixel; 375 DISEMBLE_RGB(dst, dstbpp, dstfmt, 378 ASSEMBLE_RGB(dst, dstbpp, dstfmt, dR, dG, dB); 397 SDL_PixelFormat *dstfmt = info->dst; local 405 dstbpp = dstfmt->BytesPerPixel; 422 DISEMBLE_RGB(dst, dstbpp, dstfmt, 425 ASSEMBLE_RGB(dst, dstbpp, dstfmt, dR, dG, dB);
|
SDL_pixels.c | 544 SDL_PixelFormat *dstfmt; local 557 dstfmt = dst->format; 560 switch (dstfmt->BytesPerPixel) { 569 dstfmt->palette, &map->identity); 576 if (srcfmt->BitsPerPixel!=dstfmt->BitsPerPixel) 582 map->table = Map1toN(srcfmt, dstfmt); 590 switch (dstfmt->BytesPerPixel) { 593 map->table = MapNto1(srcfmt, dstfmt, &map->identity); 603 if ( FORMAT_EQUAL(srcfmt, dstfmt) )
|