HomeSort by relevance Sort by last modified time
    Searched full:colorkey (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/libs/hwui/
PatchCache.h 70 xCount(0), yCount(0), emptyCount(0), colorKey(0) {
76 const int8_t emptyCount, const uint32_t colorKey):
80 emptyCount(emptyCount), colorKey(colorKey) {
91 LTE_INT(colorKey) return false;
110 uint32_t colorKey;
PatchCache.cpp 59 uint32_t colorKey = 0;
65 colorKey |= 0x1 << i;
76 pixelWidth, pixelHeight, width, height, transparentQuads, colorKey);
90 mesh->updateColorKey(colorKey);
100 } else if (!mesh->matches(xDivs, yDivs, colorKey)) {
Patch.h 54 void updateColorKey(const uint32_t colorKey);
56 bool matches(const int32_t* xDivs, const int32_t* yDivs, const uint32_t colorKey);
Patch.cpp 75 void Patch::updateColorKey(const uint32_t colorKey) {
76 mColorKey = colorKey;
79 bool Patch::matches(const int32_t* xDivs, const int32_t* yDivs, const uint32_t colorKey) {
80 if (mColorKey != colorKey) {
81 updateColorKey(colorKey);
  /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 */
SDL_fbriva.c 60 /* Sets video mem colorkey and accelerated blit function */
210 /* The Riva has accelerated normal and colorkey blits. */
riva_mmio.h 252 U032 ColorKey;
  /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/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);
  /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_blit.c 294 /* { 0 = nothing, 1 = colorkey, 2 = alpha, 3 = colorkey+alpha } */
SDL_sysvideo.h 127 on the current flags of the surface (colorkey, alpha, etc.)
134 /* Sets video mem colorkey and accelerated blit function */
SDL_video.c 1715 Uint32 colorkey; local
    [all...]
  /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...]
  /prebuilts/tools/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...]
  /prebuilts/tools/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...]
  /prebuilts/tools/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...]
  /prebuilts/tools/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/x11/
SDL_x11yuv.c 197 /* Enable auto-painting of the overlay colorkey */
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/inc/
OMX_VPP_Utils.h 420 OMX_U8 *colorKey;
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java     [all...]

Completed in 1061 milliseconds

1 2