logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_SetSurfacePalette - Set the palette used by a surface.

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.

See Also