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

/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_pixels.c38 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
83 if ( Amask ) {
84 for ( mask = Amask; !(mask&0x01); mask >>= 1 )
92 format->Amask = Amask;
119 format->Amask = 0;
176 if(Amask)
201 a=(i&Amask)>>format->Ashift;
225 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
231 surface->format = SDL_AllocFormat(bpp, Rmask, Gmask, Bmask, Amask);
37 SDL_AllocFormat(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) argument
224 SDL_ReallocFormat(SDL_Surface *surface, int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) argument
[all...]
H A DSDL_surface.c39 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
85 if ((Amask) && (video->displayformatalphapixel))
91 Amask = video->displayformatalphapixel->Amask;
99 Amask = screen->format->Amask;
102 surface->format = SDL_AllocFormat(depth, Rmask, Gmask, Bmask, Amask);
107 if ( Amask ) {
156 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
161 Rmask, Gmask, Bmask, Amask);
37 SDL_CreateRGBSurface(Uint32 flags, int width, int height, int depth, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) argument
154 SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) argument
[all...]
H A DSDL_RLEaccel.c1011 Uint32 Amask; member in struct:__anon29430
1293 unsigned alpha = dfmt->Amask ? 255 : 0;
1394 #define ISOPAQUE(pixel, fmt) ((((pixel) & fmt->Amask) >> fmt->Ashift) == 255)
1397 ((unsigned)((((pixel) & fmt->Amask) >> fmt->Ashift) - 1U) < 254U)
1487 r->Amask = df->Amask;
1685 rgbmask = ~surface->format->Amask;
1797 && surface->format->Amask != 0)
/external/qemu/distrib/sdl-1.2.15/src/video/nds/
H A DSDL_ndsvideo.c242 Uint32 Rmask, Gmask, Bmask, Amask; local
252 Amask = 0x00008000;
314 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, Amask) ) {
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_video.h85 Uint32 Amask; member in struct:SDL_PixelFormat
555 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
559 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.c693 vformat->Amask = (0xFFFFFFFF & ~(vformat->Rmask|vformat->Gmask|vformat->Bmask));
921 Uint32 Amask; local
973 Amask = (0xFFFFFFFF & ~(vis->red_mask|vis->green_mask|vis->blue_mask));
975 Amask = 0;
978 vis->red_mask, vis->green_mask, vis->blue_mask, Amask) ) {

Completed in 78 milliseconds