Home
last modified time | relevance | path

Searched refs:SDL_SRCCOLORKEY (Results 1 – 24 of 24) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_surface.c60 if ( (flags&(SDL_SRCCOLORKEY|SDL_SRCALPHA)) != 0 ) { in SDL_CreateRGBSurface()
63 if ( (flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in SDL_CreateRGBSurface()
178 if ( flag & SDL_SRCCOLORKEY ) { in SDL_SetColorKey()
180 flag = (SDL_SRCCOLORKEY | SDL_RLEACCELOK); in SDL_SetColorKey()
182 flag = SDL_SRCCOLORKEY; in SDL_SetColorKey()
189 if ( (flag == (surface->flags & (SDL_SRCCOLORKEY|SDL_RLEACCELOK))) && in SDL_SetColorKey()
204 surface->flags |= SDL_SRCCOLORKEY; in SDL_SetColorKey()
218 surface->flags &= ~(SDL_SRCCOLORKEY|SDL_RLEACCELOK); in SDL_SetColorKey()
841 if ( (surface_flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in SDL_ConvertSurface()
843 if((flags & SDL_SRCCOLORKEY) != SDL_SRCCOLORKEY in SDL_ConvertSurface()
[all …]
DSDL_blit.c255 if (hw_blit_ok && (surface->flags & SDL_SRCCOLORKEY)) { in SDL_CalculateBlit()
268 if (hw_blit_ok && (surface->flags & SDL_SRCCOLORKEY)) { in SDL_CalculateBlit()
296 blit_index |= (!!(surface->flags & SDL_SRCCOLORKEY)) << 0; in SDL_CalculateBlit()
DSDL_RLEaccel.c1793 if((surface->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) { in SDL_RLESurface()
1902 if((surface->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) { in SDL_UnRLESurface()
DSDL_video.c941 flags |= (surface->flags & (SDL_SRCCOLORKEY|SDL_SRCALPHA)); in SDL_DisplayFormat()
944 flags |= surface->flags & (SDL_SRCCOLORKEY|SDL_SRCALPHA|SDL_RLEACCELOK); in SDL_DisplayFormat()
1817 if ( icon->flags & SDL_SRCCOLORKEY ) flags |= 1; in SDL_WM_SetIcon()
DSDL_blit_A.c2729 if((surface->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) { in SDL_CalculateAlphaBlit()
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
DSDL_fb3dfx.c140 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in HWAccelBlit()
182 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in CheckHWBlit()
DSDL_fbmatrox.c183 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in HWAccelBlit()
236 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in CheckHWBlit()
DSDL_fbriva.c172 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in CheckHWBlit()
/external/qemu/distrib/sdl-1.2.15/test/
Dtestvidinfo.c15 SDL_SRCCOLORKEY | SDL_SRCALPHA | SDL_RLEACCEL | \
32 if ( flags & SDL_SRCCOLORKEY ) { in PrintFlags()
174 SDL_SetColorKey(bmpcc, SDL_SRCCOLORKEY | SDL_RLEACCEL, *(Uint8 *)bmpcc->pixels); in RunModeTests()
302 SDL_SetColorKey(bmpcc, SDL_SRCCOLORKEY | SDL_RLEACCEL, *(Uint8 *)bmpcc->pixels); in RunModeTests()
Dtestpalette.c181 SDL_SetColorKey(boat[0], SDL_SRCCOLORKEY | SDL_RLEACCEL, in main()
185 SDL_SetColorKey(boat[1], SDL_SRCCOLORKEY | SDL_RLEACCEL, in main()
Dthreadwin.c53 SDL_SetColorKey(icon, SDL_SRCCOLORKEY, *((Uint8 *)icon->pixels)); in LoadIconSurface()
Dtestsprite.c44 SDL_SetColorKey(sprite, (SDL_SRCCOLORKEY|SDL_RLEACCEL), in LoadSprite()
Dtestwm.c95 SDL_SetColorKey(icon, SDL_SRCCOLORKEY, *((Uint8 *)icon->pixels)); in LoadIconSurface()
Dtestblitspeed.c123 append_sdl_surface_flag(surface, f, sizeof (f), SDL_SRCCOLORKEY); in output_surface_details()
Dtestalpha.c194 SDL_SetColorKey(sprite, SDL_SRCCOLORKEY, in LoadSprite()
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
DSDL_ph_image.c630 if ((src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) in ph_CheckHWBlit()
861 if ((src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) in ph_HWAccelBlit()
909 if ((src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) in ph_HWAccelBlit()
/external/qemu/distrib/sdl-1.2.15/src/video/nds/
DSDL_ndsvideo.c93 if (src->flags & SDL_SRCCOLORKEY) return false; in CheckHWBlit()
96 if (dst->flags & SDL_SRCCOLORKEY) return false; in CheckHWBlit()
/external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
DSDL_dspvideo.c1026 if (surface->flags & SDL_SRCCOLORKEY) { in DSp_SetHWAlpha()
1041 surface->flags |= SDL_SRCCOLORKEY; in DSp_SetHWColorKey()
1130 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in DSp_CheckHWBlit()
1168 if ( (src->flags & SDL_SRCCOLORKEY) && in DSp_HWAccelBlit()
1182 if ( src->flags & SDL_SRCCOLORKEY) { in DSp_HWAccelBlit()
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
DSDL_dgavideo.c891 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in HWAccelBlit()
920 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) { in DGA_CheckHWBlit()
/external/qemu/distrib/sdl-1.2.15/
DWhatsNew188 SDL_SRCCOLORKEY ignored.
191 if SDL_SRCCOLORKEY set, only copy the pixels matching the
202 if SDL_SRCCOLORKEY set, only copy the pixels matching the
209 SDL_SRCCOLORKEY ignored.
212 if SDL_SRCCOLORKEY set, only copy the pixels matching the
222 if SDL_SRCCOLORKEY set, only copy the pixels matching the
672 SDL_SRCCOLORKEY means that the surface will be used for colorkey blits
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
DSDL_dx5video.c1918 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY )
1942 (src->flags & SDL_SRCCOLORKEY) ? "colorkey " : "", src, dst,
1974 if ( (src->flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY ) {
/external/qemu/distrib/sdl-1.2.15/include/
DSDL_video.h151 #define SDL_SRCCOLORKEY 0x00001000 /**< Blit uses a source color key */ macro
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
DSDL_DirectFB_video.c881 if (src->flags & SDL_SRCCOLORKEY) in DirectFB_HWAccelBlit()
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
DSDL_QuartzVideo.m1494 resize_icon = SDL_ConvertSurface (tmp, SDL_VideoSurface->format, SDL_SRCCOLORKEY);
1495 SDL_SetColorKey (resize_icon, SDL_SRCCOLORKEY, 0xFFFFFF);