Home
last modified time | relevance | path

Searched refs:SDL_Palette (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_pixels.h302 typedef struct SDL_Palette struct
308 } SDL_Palette; argument
316 SDL_Palette *palette;
389 extern DECLSPEC SDL_Palette *SDLCALL SDL_AllocPalette(int ncolors);
395 SDL_Palette *palette);
407 extern DECLSPEC int SDLCALL SDL_SetPaletteColors(SDL_Palette * palette,
416 extern DECLSPEC void SDLCALL SDL_FreePalette(SDL_Palette * palette);
DSDL_surface.h144 SDL_Palette * palette);
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_pixels.c616 SDL_Palette *
619 SDL_Palette *palette; in SDL_AllocPalette()
627 palette = (SDL_Palette *) SDL_malloc(sizeof(*palette)); in SDL_AllocPalette()
648 SDL_SetPixelFormatPalette(SDL_PixelFormat * format, SDL_Palette *palette) in SDL_SetPixelFormatPalette()
676 SDL_SetPaletteColors(SDL_Palette * palette, const SDL_Color * colors, in SDL_SetPaletteColors()
703 SDL_FreePalette(SDL_Palette * palette) in SDL_FreePalette()
772 SDL_FindColor(SDL_Palette * pal, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_FindColor()
878 Map1to1(SDL_Palette * src, SDL_Palette * dst, int *identical) in Map1to1()
918 SDL_Palette *pal = src->palette; in Map1toN()
943 SDL_Palette dithered; in MapNto1()
[all …]
DSDL_pixels_c.h39 extern Uint8 SDL_FindColor(SDL_Palette * pal, Uint8 r, Uint8 g, Uint8 b, Uint8 a);
DSDL_surface.c62 SDL_Palette *palette = in SDL_CreateRGBSurfaceWithFormat()
177 SDL_SetSurfacePalette(SDL_Surface * surface, SDL_Palette * palette) in SDL_SetSurfacePalette()
DSDL_bmp.c98 SDL_Palette *palette; in SDL_LoadBMP_RW()
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/
DSDL_dynapi_procs.h317 SDL_DYNAPI_PROC(SDL_Palette*,SDL_AllocPalette,(int a),(a),return)
318 SDL_DYNAPI_PROC(int,SDL_SetPixelFormatPalette,(SDL_PixelFormat *a, SDL_Palette *b),(a,b),return)
319 SDL_DYNAPI_PROC(int,SDL_SetPaletteColors,(SDL_Palette *a, const SDL_Color *b, int c, int d),(a,b,c,…
320 SDL_DYNAPI_PROC(void,SDL_FreePalette,(SDL_Palette *a),(a),)
480 SDL_DYNAPI_PROC(int,SDL_SetSurfacePalette,(SDL_Surface *a, SDL_Palette *b),(a,b),return)
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_pixels.c325 SDL_Palette* result; in pixels_allocFreePalette()
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_render.c291 DisplayPaletteChanged(void *userdata, SDL_Palette * palette) in DisplayPaletteChanged()