Go to the documentation of this file.
28 #ifndef SDL_surface_h_
29 #define SDL_surface_h_
52 #define SDL_SWSURFACE 0
53 #define SDL_PREALLOC 0x00000001
54 #define SDL_RLEACCEL 0x00000002
55 #define SDL_DONTFREE 0x00000004
61 #define SDL_MUSTLOCK(S) (((S)->flags & SDL_RLEACCEL) != 0)
200 #define SDL_LoadBMP(file) SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1)
223 #define SDL_SaveBMP(surface, file) \
224 SDL_SaveBMP_RW(surface, SDL_RWFromFile(file, "wb"), 1)
407 const void * src,
int src_pitch,
409 void * dst,
int dst_pitch);
483 #define SDL_BlitSurface SDL_UpperBlit
512 #define SDL_BlitScaled SDL_UpperBlitScaled