TSDL_Palette

Name

TSDL_Palette -- Color palette for 8-bit pixel formats

Structure Definition

  TSDL_Palette = record
ncolors: Integer;
colors: PSDL_ColorArray;
end;

Structure Data

ncolors Number of colors used in this palette
colors Pointer to TSDL_Color structures that make up the palette.

Description

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

See Also

TSDL_ColorTSDL_Surface , SDL_SetColors   SDL_SetPalette