.\" Generated by the Allegro makedoc utility .TH set_palette 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME set_palette \- Sets the entire palette of 256 colors. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void set_palette(const PALETTE p); .SH 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: .nf BITMAP *bmp; PALETTE palette; ... bmp = load_bitmap(filename, palette); if (!bmp) abort_on_error("Couldn't load bitmap!"); set_palette(palette); .fi .SH SEE ALSO .BR set_gfx_mode (3alleg4), .BR set_palette_range (3alleg4), .BR set_color (3alleg4), .BR get_palette (3alleg4), .BR select_palette (3alleg4), .BR palette_color (3alleg4)