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_Palette - Color palette for 8-bit pixel formats

Description

       Each  pixel  in  an 8-bit surface is an index into the colors field of the SDL_Palette structure store in
       SDL_PixelFormat. A SDL_Palette should never need to be created manually. It is automatically created when
       SDL allocates a SDL_PixelFormat for a surface. The colors values of a SDL_Surfaces  palette  can  be  set
       with the SDL_SetColors.

Name

       SDL_Palette - Color palette for 8-bit pixel formats

See Also

SDL_Color, SDL_Surface, SDL_SetColorsSDL_SetPalette

SDL                                          Tue 11 Sep 2001, 23:01                               SDL_Palette(3)

Structure Data

ncolors             Number of colors used in this palette

       colors              Pointer to SDL_Color structures that make up the palette.

Structure Definition

       typedef struct{
         int ncolors;
         SDL_Color *colors;
       } SDL_Palette;

See Also