DRAFT

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

see SDL_LoadWAV_RW for same parameters

Return Value

Returns the new surface, 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().

Does SDL_LoadBMP(file) belong on this page?


CategoryAPI, CategorySurface

SDL_LoadBMP_RW (last edited 2010-02-25 06:56:12 by SheenaSmith)