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

  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbmatrox.c 51 /* 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 blits. *
    [all...]
SDL_fb3dfx.c 46 /* Sets video mem colorkey and accelerated blit function */
144 tdfx_out32(SRCCOLORKEYMIN, src->format->colorkey);
145 tdfx_out32(SRCCOLORKEYMAX, src->format->colorkey);
213 /* The 3Dfx has accelerated normal and colorkey blits */
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_image_c.h 35 Uint32 colorkey; member in struct:private_hwdata
SDL_ph_image.c 863 ph_SetHWColorKey(this, src, src->format->colorkey);
935 surface->hwdata->colorkey=ph_ExpandColor(this, surface, key);
936 if (surface->hwdata->colorkey==0xFFFFFFFFUL)
941 PgSetChroma(surface->hwdata->colorkey, Pg_CHROMA_SRC_MATCH | Pg_CHROMA_NODRAW);
  /hardware/ti/omap3/liboverlay/
v4l2_utils.h 28 int v4l2_overlay_set_colorkey(int fd, int enable, int colorkey);
v4l2_utils.c 381 int v4l2_overlay_set_colorkey(int fd, int enable, int colorkey)
400 ret = v4l2_overlay_ioctl(fd, VIDIOC_S_FBUF, &fbuf, "enable colorkey");
410 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &fmt, "get colorkey");
415 fmt.fmt.win.chromakey = colorkey & 0xFFFFFF;
417 ret = v4l2_overlay_ioctl(fd, VIDIOC_S_FMT, &fmt, "set colorkey");
  /device/samsung/crespo/liboverlay/
v4l2_utils.h 36 int v4l2_overlay_set_colorkey(int fd, int enable, int colorkey);
v4l2_utils.c 506 int v4l2_overlay_set_colorkey(int fd, int enable, int colorkey)
526 ret = v4l2_overlay_ioctl(fd, VIDIOC_S_FBUF, &fbuf, "enable colorkey");
534 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &fmt, "get colorkey");
539 fmt.fmt.win.chromakey = colorkey & 0xFFFFFF;
541 ret = v4l2_overlay_ioctl(fd, VIDIOC_S_FMT, &fmt, "set colorkey");
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_0.c 198 Uint32 ckey = info->src->colorkey;
250 Uint32 ckey = info->src->colorkey;
284 Uint32 ckey = info->src->colorkey;
317 Uint32 ckey = info->src->colorkey;
402 Uint32 ckey = srcfmt->colorkey;
460 case 1: /* colorkey */
466 case 4: /* alpha + colorkey */
SDL_blit_1.c 285 Uint32 ckey = info->src->colorkey;
327 Uint32 ckey = info->src->colorkey;
356 Uint32 ckey = info->src->colorkey;
386 Uint32 ckey = info->src->colorkey;
455 Uint32 ckey = srcfmt->colorkey;
509 case 1: /* colorkey */
518 case 3: /* alpha + colorkey */
SDL_surface.c 190 (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);
SDL_video.c 1715 Uint32 colorkey; local
    [all...]
SDL_blit_N.c 556 Uint32 ckey = info->src->colorkey;
    [all...]
SDL_RLEaccel.c 25 * RLE encoding for software colorkey and alpha-channel acceleration
120 * Various colorkey blit methods, for opaque and per-surface alpha
    [all...]
SDL_blit_A.c 183 Uint32 ckey = srcfmt->colorkey;
950 Uint32 ckey = info->src->colorkey
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxaccel.c 64 D(bug("Building colorkey mask: color: %ld, size: %ld x %ld, %ld bytes...Bpp:%ld\n",key,surface->w,surface->h,RASSIZE(surface->w,surface->h),surface->format->BytesPerPixel));
163 D(bug("...Colorkey built!\n"));
168 D(bug("HW colorkey not supported for this depth\n"));
182 if ( CGX_SetHWColorKey(this, src, src->format->colorkey) < 0 ) {
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_video.h 80 Uint32 colorkey; member in struct:SDL_PixelFormat
155 Uint32 blit_hw_CC :1; /* Flag: Accelerated blits with Colorkey */
158 Uint32 blit_sw_CC :1; /* Flag: Accelerated blits with Colorkey */
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 befor
    [all...]
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_video.h 80 Uint32 colorkey; member in struct:SDL_PixelFormat
155 Uint32 blit_hw_CC :1; /* Flag: Accelerated blits with Colorkey */
158 Uint32 blit_sw_CC :1; /* Flag: Accelerated blits with Colorkey */
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 befor
    [all...]
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_video.h 80 Uint32 colorkey; member in struct:SDL_PixelFormat
155 Uint32 blit_hw_CC :1; /* Flag: Accelerated blits with Colorkey */
158 Uint32 blit_sw_CC :1; /* Flag: Accelerated blits with Colorkey */
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 befor
    [all...]
  /prebuilt/windows/sdl/host/include/SDL/
SDL_video.h 87 Uint32 colorkey; member in struct:SDL_PixelFormat
163 Uint32 blit_hw_CC :1; /* Flag: Accelerated blits with Colorkey */
166 Uint32 blit_sw_CC :1; /* Flag: Accelerated blits with Colorkey */
490 * SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits.
491 * If the hardware supports acceleration of colorkey blits between
579 * that per-surface alpha can be combined with colorkey transparency.
618 * SDL will try to RLE accelerate colorkey and alpha blits in the resulting
636 * The blit semantics for surfaces with and without alpha and colorkey
727 * If you want to take advantage of hardware colorkey or alpha blit
728 * acceleration, you should set the colorkey and alpha value befor
    [all...]
  /prebuilt/windows/sdl/include/SDL/
SDL_video.h 80 Uint32 colorkey; member in struct:SDL_PixelFormat
155 Uint32 blit_hw_CC :1; /* Flag: Accelerated blits with Colorkey */
158 Uint32 blit_sw_CC :1; /* Flag: Accelerated blits with Colorkey */
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 befor
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c 2016 DDCOLORKEY colorkey; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 889 srcx, srcy, w, h, dstx, dsty, src->format->colorkey);
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 884 DirectFB_SetHWColorKey (NULL, src, src->format->colorkey);

Completed in 1447 milliseconds