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

  /external/qemu/distrib/sdl-1.2.15/test/
testblitspeed.c 125 append_sdl_surface_flag(surface, f, sizeof (f), SDL_RLEACCEL);
308 srcalphaflags = (src->flags&SDL_SRCALPHA) | (src->flags&SDL_RLEACCEL);
309 dstalphaflags = (dest->flags&SDL_SRCALPHA) | (dest->flags&SDL_RLEACCEL);
327 srcalphaflags |= SDL_RLEACCEL;
329 srcalphaflags &= ~SDL_RLEACCEL;
335 dstalphaflags |= SDL_RLEACCEL;
337 dstalphaflags &= ~SDL_RLEACCEL;
testsprite.c 44 SDL_SetColorKey(sprite, (SDL_SRCCOLORKEY|SDL_RLEACCEL),
284 if ( (sprite->flags & SDL_RLEACCEL) == SDL_RLEACCEL ) {
testvidinfo.c 15 SDL_SRCCOLORKEY | SDL_SRCALPHA | SDL_RLEACCEL | \
38 if ( flags & SDL_RLEACCEL ) {
39 printf(" | SDL_RLEACCEL");
174 SDL_SetColorKey(bmpcc, SDL_SRCCOLORKEY | SDL_RLEACCEL, *(Uint8 *)bmpcc->pixels);
302 SDL_SetColorKey(bmpcc, SDL_SRCCOLORKEY | SDL_RLEACCEL, *(Uint8 *)bmpcc->pixels);
testpalette.c 181 SDL_SetColorKey(boat[0], SDL_SRCCOLORKEY | SDL_RLEACCEL,
185 SDL_SetColorKey(boat[1], SDL_SRCCOLORKEY | SDL_RLEACCEL,
testalpha.c 144 SDL_SetAlpha(light, SDL_SRCALPHA|SDL_RLEACCEL, 0);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_surface.c 179 if ( flag & (SDL_RLEACCEL|SDL_RLEACCELOK) ) {
195 if ( surface->flags & SDL_RLEACCEL ) {
232 if ( flag & (SDL_RLEACCEL|SDL_RLEACCELOK) ) {
247 if(!(flag & SDL_RLEACCELOK) && (surface->flags & SDL_RLEACCEL))
747 if ( surface->flags & SDL_RLEACCEL ) {
749 surface->flags |= SDL_RLEACCEL; /* save accel'd state */
781 if ( (surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL ) {
782 surface->flags &= ~SDL_RLEACCEL; /* stop lying */
917 if ( (surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL )
    [all...]
SDL_blit.c 238 if ( (surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL ) {
SDL_RLEaccel.c     [all...]
SDL_pixels.c 550 if ( (src->flags & SDL_RLEACCEL) == SDL_RLEACCEL ) {
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_video.h 153 #define SDL_RLEACCEL 0x00004000 /**< Surface is RLE encoded */
163 ((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0))
608 * If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL),
610 * SDL_RLEACCEL requests RLE acceleration for the surface if present,
628 * OR:ing the flag with SDL_RLEACCEL requests RLE acceleration for the
629 * surface; if SDL_RLEACCEL is not specified, the RLE accel will be removed.
662 * semantics. You can also pass SDL_RLEACCEL in the flags parameter and
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_video.h 153 #define SDL_RLEACCEL 0x00004000 /**< Surface is RLE encoded */
163 ((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0))
608 * If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL),
610 * SDL_RLEACCEL requests RLE acceleration for the surface if present,
628 * OR:ing the flag with SDL_RLEACCEL requests RLE acceleration for the
629 * surface; if SDL_RLEACCEL is not specified, the RLE accel will be removed.
662 * semantics. You can also pass SDL_RLEACCEL in the flags parameter and
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_video.h 153 #define SDL_RLEACCEL 0x00004000 /**< Surface is RLE encoded */
163 ((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0))
608 * If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL),
610 * SDL_RLEACCEL requests RLE acceleration for the surface if present,
628 * OR:ing the flag with SDL_RLEACCEL requests RLE acceleration for the
629 * surface; if SDL_RLEACCEL is not specified, the RLE accel will be removed.
662 * semantics. You can also pass SDL_RLEACCEL in the flags parameter and
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_video.h 153 #define SDL_RLEACCEL 0x00004000 /**< Surface is RLE encoded */
163 ((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0))
608 * If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL),
610 * SDL_RLEACCEL requests RLE acceleration for the surface if present,
628 * OR:ing the flag with SDL_RLEACCEL requests RLE acceleration for the
629 * surface; if SDL_RLEACCEL is not specified, the RLE accel will be removed.
662 * semantics. You can also pass SDL_RLEACCEL in the flags parameter and
    [all...]

Completed in 39 milliseconds