Size: 1339
Comment: update content - pointers, structs
|
Size: 1349
Comment: update formatting - structs, enums, an/the
|
Deletions are marked like this. | Additions are marked like this. |
Line 23: | Line 23: |
Returns a pointer to a new [[SDL_Surface]] or NULL if there was an error; call [[SDL_GetError]]() for more information. | Returns a pointer to a new [[SDL_Surface]] structure or NULL if there was an error; call [[SDL_GetError]]() for more information. |
DRAFT |
SDL_LoadBMP_RW
Use this function to load a surface from a seekable SDL data source (memory or file).
Contents
Syntax
SDL_Surface* SDL_LoadBMP_RW(SDL_RWops* src,
int freesrc)
Function Parameters
src |
the data source for the surface |
freesrc |
non-zero to close the source after being read |
green
Return Value
Returns a pointer to a new SDL_Surface structure or NULL if there was an error; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
The new surface should be freed with SDL_FreeSurface().
*
green
Note: When loading a 24-bit Windows BMP file, pixel data points are loaded as blue, green, red, and NOT red, green, blue (as one might expect).
*