Wiki Page Content

Revision 9 as of 2011-01-11 23:14:09

Clear message

SDL_LoadBMP_RW

Use this function to load a surface from a seekable SDL data source (memory or file).

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

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().


CategoryAPI, CategorySurface

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit