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

1 2 3

  /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.15/docs/man3/
SDL_DisplayFormat.3 13 If you want to take advantage of hardware colorkey or alpha blit acceleration, you should set the colorkey and alpha value before calling this function\&.
SDL_DisplayFormatAlpha.3 13 If you want to take advantage of hardware colorkey or alpha blit acceleration, you should set the colorkey and alpha value before calling this function\&.
SDL_VideoInfo.3 34 Are hardware to hardware colorkey blits accelerated?
43 Are software to hardware colorkey blits accelerated?
SDL_SetAlpha.3 36 The source is alpha-blended with the destination using the per-surface alpha value\&. If \fBSDL_SRCCOLORKEY\fP is set, only the pixels not matching the colorkey value are copied\&. The alpha channel of the copied pixels is set to opaque\&.
39 The RGB data is copied from the source and the alpha value of the copied pixels is set to opaque\&. If \fBSDL_SRCCOLORKEY\fP is set, only the pixels not matching the colorkey value are copied\&.
45 The RGBA data is copied to the destination surface\&. If \fBSDL_SRCCOLORKEY\fP is set, only the pixels not matching the colorkey value are copied\&.
48 The source is alpha-blended with the destination using the per-surface alpha value\&. If \fBSDL_SRCCOLORKEY\fP is set, only the pixels not matching the colorkey value are copied\&.
51 The RGB data is copied from the source\&. If \fBSDL_SRCCOLORKEY\fP is set, only the pixels not matching the colorkey value are copied\&.
SDL_Surface.3 83 Surface use colorkey blitting
86 Colorkey blitting is accelerated with RLE
SDL_PixelFormat.3 14 Uint32 colorkey;
  /external/qemu/distrib/sdl-1.2.15/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 */
142 tdfx_out32(SRCCOLORKEYMIN, src->format->colorkey);
143 tdfx_out32(SRCCOLORKEYMAX, src->format->colorkey);
211 /* 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. */
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_image_c.h 35 Uint32 colorkey; member in struct:private_hwdata
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlsetalpha.html 262 matching the colorkey value are copied. The alpha channel of the copied pixels
283 not matching the colorkey value are copied. </P
321 > is set, only the pixels not matching the colorkey value are copied.</P
339 > is set, only the pixels not matching the colorkey value are copied.</P
357 > is set, only the pixels not matching the colorkey value are copied.</P
sdldisplayformat.html 131 >If you want to take advantage of hardware colorkey or alpha blit
132 acceleration, you should set the colorkey and alpha value before
sdldisplayformatalpha.html 131 >If you want to take advantage of hardware colorkey or alpha blit
132 acceleration, you should set the colorkey and alpha value before
sdlvideoinfo.html 183 >Are hardware to hardware colorkey blits accelerated?</TD
228 >Are software to hardware colorkey blits accelerated?</TD
  /external/qemu/distrib/sdl-1.2.15/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);
  /external/qemu/distrib/sdl-1.2.15/test/
testblitspeed.c 59 print_tf_state(" accelerated hardware->hardware colorkey blits", info->blit_hw_CC);
62 print_tf_state(" accelerated software->hardware colorkey blits", info->blit_sw_CC);
87 printf(" colorkey : 0x%X\n", (unsigned int) surface->format->colorkey);
258 /* !!! FIXME: set colorkey. */
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_video.h 88 Uint32 colorkey; member in struct:SDL_PixelFormat
177 Uint32 blit_hw_CC :1; /**< Flag: Accelerated blits with Colorkey */
180 Uint32 blit_sw_CC :1; /**< Flag: Accelerated blits with Colorkey */
535 * SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits.
536 * If the hardware supports acceleration of colorkey blits between
624 * that per-surface alpha can be combined with colorkey transparency.
663 * SDL will try to RLE accelerate colorkey and alpha blits in the resulting
681 * The blit semantics for surfaces with and without alpha and colorkey
775 * If you want to take advantage of hardware colorkey or alpha blit
776 * acceleration, you should set the colorkey and alpha value befor
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_video.h 88 Uint32 colorkey; member in struct:SDL_PixelFormat
177 Uint32 blit_hw_CC :1; /**< Flag: Accelerated blits with Colorkey */
180 Uint32 blit_sw_CC :1; /**< Flag: Accelerated blits with Colorkey */
535 * SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits.
536 * If the hardware supports acceleration of colorkey blits between
624 * that per-surface alpha can be combined with colorkey transparency.
663 * SDL will try to RLE accelerate colorkey and alpha blits in the resulting
681 * The blit semantics for surfaces with and without alpha and colorkey
775 * If you want to take advantage of hardware colorkey or alpha blit
776 * acceleration, you should set the colorkey and alpha value befor
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_video.h 88 Uint32 colorkey; member in struct:SDL_PixelFormat
177 Uint32 blit_hw_CC :1; /**< Flag: Accelerated blits with Colorkey */
180 Uint32 blit_sw_CC :1; /**< Flag: Accelerated blits with Colorkey */
535 * SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits.
536 * If the hardware supports acceleration of colorkey blits between
624 * that per-surface alpha can be combined with colorkey transparency.
663 * SDL will try to RLE accelerate colorkey and alpha blits in the resulting
681 * The blit semantics for surfaces with and without alpha and colorkey
775 * If you want to take advantage of hardware colorkey or alpha blit
776 * acceleration, you should set the colorkey and alpha value befor
    [all...]

Completed in 2503 milliseconds

1 2 3