Penguin

SDL_CreateRGBSurfaceFrom

SDL_CreateRGBSurfaceFrom

NAME SYNOPSIS DESCRIPTION SEE ALSO


NAME

SDL_CreateRGBSurfaceFrom- Create an SDL_Surface from pixel data

SYNOPSIS

#include

SDL_Surface *SDL_CreateRGBSurfaceFrom(__void

  • pixels, int width, int height, int depth, int pitch, Uint32

Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask__);

DESCRIPTION

Creates an SDL_Surface from the provided pixel data.

The data stored in pixels is assumed to be of the depth specified in the parameter list. The pixel data is not copied into the SDL_Surface structure so it should no be freed until the surface has been freed with a called to SDL_!FreeSurface?. pitch is the length of each scanline in bytes.

See SDL_CreateRGBSurface for a more detailed description of the other parameters.

SEE ALSO

SDL_CreateRGBSurface, SDL_!FreeSurface?


This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.