SDL_SetSurfacePalette - Set the palette used by a surface.
Contents
Availability
This function is available since SDL 3.2.0.
Description
A single palette can be shared with many surfaces.
Function Parameters
surface
the SDL_Surface
structure to update.
palette
the SDL_Palette
structure to use.
Header File
Defined in SDL3/SDL_surface.h
Name
SDL_SetSurfacePalette - Set the palette used by a surface.
Return Value
Returns true on success or false on failure; call
SDL_GetError () for more information.
See Also
•(3), SDL_CreatePalette(3), •(3), SDL_GetSurfacePalette(3) Simple Directmedia Layer SDL 3.2.10 SDL_SetSurfacePalette(3)
Synopsis
#include"SDL3/SDL.h"boolSDL_SetSurfacePalette(SDL_Surface*surface,SDL_Palette*palette);
Thread Safety
This function is not thread safe.
