SDL_CreateRGBSurfaceFrom (3) Linux Manual Page
SDL_CreateRGBSurfaceFrom – Create an SDL_Surface from pixel data Synopsis#include "SDL.h" SDL_Surface *SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); DescriptionCreates 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…
