Scroll to navigation

SDL_SetSurfacePalette(3) SDL3 FUNCTIONS SDL_SetSurfacePalette(3)

NAME

SDL_SetSurfacePalette - Set the palette used by a surface.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette);

DESCRIPTION

A single palette can be shared with many surfaces.

FUNCTION PARAMETERS

the SDL_Surface
structure to update
the SDL_Palette
structure to use

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.1.0 SDL