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

1 2 3 4

  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_CreateRGBSurface.3 8 \fBSDL_Surface *\fBSDL_CreateRGBSurface\fP\fR(\fBUint32 flags, int width, int height, int depth, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask\fR);
41 Uint32 rmask, gmask, bmask, amask;
48 bmask = 0x0000ff00;
53 bmask = 0x00ff0000;
58 rmask, gmask, bmask, amask);
SDL_CreateRGBSurfaceFrom.3 8 \fBSDL_Surface *\fBSDL_CreateRGBSurfaceFrom\fP\fR(\fBvoid *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask\fR);
SDL_PixelFormat.3 13 Uint32 Rmask, Gmask, Bmask, Amask;
119 temp=pixel&fmt->Bmask; /* Isolate blue component */
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels_c.h 30 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
32 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
SDL_pixels.c 38 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
55 if ( Rmask || Bmask || Gmask ) { /* Packed pixels with custom mask */
75 if ( Bmask ) {
76 for ( mask = Bmask; !(mask&0x01); mask >>= 1 )
91 format->Bmask = Bmask;
105 format->Bmask = ((0xFF>>format->Bloss)<<format->Bshift);
118 format->Bmask = 0;
140 if ( Rmask || Bmask || Gmask ) {
166 if(Bmask)
    [all...]
SDL_bmp.c 57 Uint32 Bmask;
172 Rmask = Gmask = Bmask = 0;
183 Bmask = 0x001F;
189 Bmask = 0x00FF0000;
195 Bmask = 0x000000FF;
211 Bmask = SDL_ReadLE32(src);
225 biWidth, biHeight, biBitCount, Rmask, Gmask, Bmask, 0);
402 (saveme->format->Bmask == 0x000000FF)
406 (saveme->format->Bmask == 0x00FF0000)
SDL_surface.c 39 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
90 Bmask = video->displayformatalphapixel->Bmask;
98 Bmask = screen->format->Bmask;
102 surface->format = SDL_AllocFormat(depth, Rmask, Gmask, Bmask, Amask);
156 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
161 Rmask, Gmask, Bmask, Amask);
826 format->Rmask, format->Gmask, format->Bmask, format->Amask);
SDL_blit_A.c 285 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) {
505 Uint32 chanmask = df->Rmask | df->Gmask | df->Bmask;
508 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) {
605 Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask;
759 Uint32 bmask = RESHIFT(srcfmt->Bshift) << (dstfmt->Bshift); local
765 amask = 0x10101010 & ((dstfmt->Rmask | dstfmt->Gmask | dstfmt->Bmask) ^ 0xFFFFFFFF);
768 ((unsigned int *)(char*)&srcvec)[0] = (rmask | gmask | bmask | amask);
950 Uint32 rgbmask = srcfmt->Rmask | srcfmt->Gmask | srcfmt->Bmask
2173 __m64 src1, dst1, src2, dst2, gmask, bmask, mm_res, mm_alpha; local
2307 __m64 src1, dst1, src2, dst2, rmask, gmask, bmask, mm_res, mm_alpha; local
    [all...]
SDL_RLEaccel.c 639 switch(fmt->Rmask | fmt->Gmask | fmt->Bmask) { \
643 || fmt->Bmask == 0x07e0) { \
659 || fmt->Bmask == 0x03e0) { \
683 if((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff \
685 || fmt->Bmask == 0xff00)) { \
725 switch(fmt->Rmask | fmt->Gmask | fmt->Bmask) { \
729 || fmt->Bmask == 0x07e0) { \
742 || fmt->Bmask == 0x03e0) { \
763 if((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff \
765 || fmt->Bmask == 0xff00)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_masking.c 74 const GLushort bMask = ctx->Color.ColorMask[buf][BCOMP] ? 0xffff : 0x0;
82 src[i][BCOMP] = (src[i][BCOMP] & bMask) | (dst[i][BCOMP] & ~bMask);
90 const GLuint bMask = ctx->Color.ColorMask[buf][BCOMP] ? ~0x0 : 0x0;
98 src[i][BCOMP] = (src[i][BCOMP] & bMask) | (dst[i][BCOMP] & ~bMask);
  /external/mesa3d/src/mesa/swrast/
s_masking.c 74 const GLushort bMask = ctx->Color.ColorMask[buf][BCOMP] ? 0xffff : 0x0;
82 src[i][BCOMP] = (src[i][BCOMP] & bMask) | (dst[i][BCOMP] & ~bMask);
90 const GLuint bMask = ctx->Color.ColorMask[buf][BCOMP] ? ~0x0 : 0x0;
98 src[i][BCOMP] = (src[i][BCOMP] & bMask) | (dst[i][BCOMP] & ~bMask);
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlcreatergbsurface.html 109 >(Uint32 flags, int width, int height, int depth, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);</CODE
306 Uint32 rmask, gmask, bmask, amask;
313 bmask = 0x0000ff00;
318 bmask = 0x00ff0000;
323 rmask, gmask, bmask, amask);
  /external/qemu/distrib/sdl-1.2.15/src/video/dc/
SDL_dcvideo.c 146 vformat->Bmask = 0x0000001f;
194 Uint32 Rmask, Gmask, Bmask;
209 Bmask = 0x0000001f;
215 Bmask = 0x0000001f;
221 Bmask = 0x000000ff;
232 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
  /external/qemu/android/skin/
surface.c 92 Uint32 rmask, gmask, bmask, amask; local
95 rmask = gmask = bmask = 0;
100 bmask = ARGB32_B_MASK;
106 rmask, gmask, bmask, amask );
117 Uint32 rmask, gmask, bmask, amask; local
120 rmask = gmask = bmask = 0;
125 bmask = ARGB32_B_MASK;
131 rmask, gmask, bmask, amask );
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglvideo.h 43 int Bmask;
  /external/aac/libSBRdec/src/
sbr_crc.cpp 104 ULONG bMask = (1UL << (nBits - 1));
106 for (i = 0; i < nBits; i++, bMask >>= 1) {
108 USHORT flag1 = (bMask & bValue) ? 1 : 0;
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_video.c 230 if (format->Rmask && format->Gmask && format->Bmask)
240 format->Bmask == 0x001F)
247 format->Bmask == 0x001F)
254 format->Bmask == 0x0000FF)
261 format->Bmask == 0x0000FF)
318 format->Amask = format->Rmask = format->Gmask = format->Bmask = 0;
330 format->Bmask = 0x0000001F;
336 format->Bmask = 0x0000001F;
346 format->Bmask = 0x000000FF;
352 format->Bmask = 0x000000FF
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosvideo.c 195 vformat->Bmask = 0x00007c00;
204 vformat->Bmask = 0x00ff0000;
211 vformat->Bmask = 0;
SDL_wimpvideo.c 87 Uint32 Bmask = 0;
104 Bmask = 0x00007c00;
111 Bmask = 0x00ff0000;
126 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
  /external/chromium_org/third_party/skia/src/views/sdl/
SkOSWindow_SDL.cpp 51 uint32_t bmask = SK_B32_MASK << SK_B32_SHIFT; local
61 32, rmask, gmask, bmask, amask);
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.h 146 #define VDI_FBMASK(amask, rmask, gmask, bmask) \
150 VDI_bluemask = (bmask);
  /external/skia/src/views/sdl/
SkOSWindow_SDL.cpp 51 uint32_t bmask = SK_B32_MASK << SK_B32_SHIFT; local
61 32, rmask, gmask, bmask, amask);
  /external/qemu/distrib/sdl-1.2.15/src/video/nds/
SDL_ndsvideo.c 174 vformat->Bmask = 0x0000001f;
242 Uint32 Rmask, Gmask, Bmask, Amask;
251 Bmask = 0x00007C00;
273 Bmask = 0x00000000;
314 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, Amask) ) {
  /hardware/intel/img/psb_video/src/x11/
psb_x11.c 132 uint32_t bmask = 0; local
180 bmask = visual->blue_mask;
184 bshift = mask2shift(bmask);
186 drv_debug_msg(VIDEO_DEBUG_GENERAL, "PutSurface: Pixel masks: R = %08x G = %08x B = %08x\n", rmask, gmask, bmask);
216 *pixel = ((r << rshift) & rmask) | ((g << gshift) & gmask) | ((b << bshift) & bmask);
  /external/libpng/contrib/gregbook/
rpng-x.c 145 static ulg RMask, GMask, BMask;
505 BMask = visual->blue_mask;
519 BShift = 15 - rpng_x_msb(BMask);
525 BShift = rpng_x_msb(BMask) - 7;
529 BShift = 7 - rpng_x_msb(BMask);
620 ((((ulg)bg_blue << 8) >> BShift) & BMask);
730 pixel = (red & RMask) | (green & GMask) | (blue & BMask);
795 ((blue >> BShift) & BMask);
827 ((blue >> BShift) & BMask);

Completed in 7596 milliseconds

1 2 3 4