SET_PALETTE(3ALLEG4) - Linux manual page online | Library functions
Sets the entire palette of 256 colors. Allegro game programming library.
Chapter
version 4.4.2
set_palette(3alleg4) Allegro manual set_palette(3alleg4)
Allegro version 4.4.2 set_palette(3alleg4)
NAME
set_palette - Sets the entire palette of 256 colors. Allegro game programming library.SYNOPSIS
#include <allegro.h> void set_palette(const PALETTE p);DESCRIPTION
Sets the entire palette of 256 colors. You should provide an array of 256 RGB structures. Unlike set_color(), there is no need to call vsync() before this function. Example: BITMAP *bmp; PALETTE palette; ... bmp = load_bitmap(filename, palette); if (!bmp) abort_on_error("Couldn't load bitmap!"); set_palette(palette);SEE ALSO
set_gfx_mode(3alleg4), set_palette_range(3alleg4), set_color(3alleg4), get_pal‐ ette(3alleg4), select_palette(3alleg4), palette_color(3alleg4)This manual | Reference | Other manuals |
---|---|---|
set_palette(3alleg4) | referred by |
ex12bit(3alleg4) | ex3buf(3alleg4) | ex3d(3alleg4) | exaccel(3alleg4) | excolmap(3alleg4) | exconfig(3alleg4) | excustom(3alleg4) | exdbuf(3alleg4) | exfont(3alleg4) | exhello(3alleg4) | exjoy(3alleg4) | exkeys(3alleg4) | exmem(3alleg4) | exmidi(3alleg4) | exmouse(3alleg4) | expal(3alleg4) | expat(3alleg4) | exquat(3alleg4) | exrgbhsv(3alleg4) | exsample(3alleg4) |
refer to | palette_color(3alleg4) | select_palette(3alleg4) | set_color(3alleg4) | set_gfx_mode(3alleg4) | set_palette_range(3alleg4) |