Searched defs:colorkey (Results 1 - 6 of 6) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/photon/
H A DSDL_ph_image_c.h35 Uint32 colorkey; member in struct:private_hwdata
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbmatrox.c51 /* Sets video mem colorkey and accelerated blit function */
184 Uint32 colorkey; local
190 colorkey = src->format->colorkey;
193 colorkey |= (colorkey<<8);
195 colorkey |= (colorkey<<16);
199 mga_out32(MGAREG_FCOL, colorkey);
261 /* The Matrox has accelerated normal and colorkey blit
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_surface.c190 (key == surface->format->colorkey) ) {
194 /* UnRLE surfaces before we change the colorkey */
205 surface->format->colorkey = key;
219 surface->format->colorkey = 0;
795 Uint32 colorkey = 0; local
847 colorkey = surface->format->colorkey;
877 SDL_GetRGB(colorkey,surface->format,&keyR,&keyG,&keyB);
881 SDL_SetColorKey(surface, cflags, colorkey);
H A DSDL_video.c1715 Uint32 colorkey; local
1719 colorkey = icon->format->colorkey;
1725 if ( *pixels++ == colorkey ) {
1738 if ( (flags & 1) && *pixels == colorkey ) {
1754 if ( (flags & 1) && *pixels == colorkey ) {
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_video.h80 Uint32 colorkey; member in struct:SDL_PixelFormat
488 * SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits.
489 * If the hardware supports acceleration of colorkey blits between
577 * that per-surface alpha can be combined with colorkey transparency.
616 * SDL will try to RLE accelerate colorkey and alpha blits in the resulting
634 * The blit semantics for surfaces with and without alpha and colorkey
725 * If you want to take advantage of hardware colorkey or alpha blit
726 * acceleration, you should set the colorkey and alpha value before
739 * If you want to take advantage of hardware colorkey or alpha blit
740 * acceleration, you should set the colorkey an
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5video.c1925 (src->flags & SDL_SRCCOLORKEY) ? "colorkey " : "", src, dst,
1958 if ( DX5_SetHWColorKey(this, src, src->format->colorkey) < 0 ) {
2016 DDCOLORKEY colorkey; local
2019 /* Set the surface colorkey */
2020 colorkey.dwColorSpaceLowValue = key;
2021 colorkey.dwColorSpaceHighValue = key;
2023 surface->hwdata->dd_surface, DDCKEY_SRCBLT, &colorkey);

Completed in 124 milliseconds