SDL_SetPaletteColors

Set a range of colors in a palette.

extern (C) nothrow @nogc extern
bool
SDL_SetPaletteColors

Parameters

palette SDL_Palette*

the SDL_Palette structure to modify.

colors const(SDL_Color)*

an array of SDL_Color structures to copy into the palette.

firstcolor int

the index of the first palette entry to modify.

ncolors int

the number of entries to modify.

Return Value

Type: bool

true on success or false on failure; call SDL_GetError() for more information.

Threadsafety: It is safe to call this function from any thread, as long as the palette is not modified or destroyed in another thread.

Meta