.\" Generated by the Allegro makedoc utility .TH set_palette_range 3alleg4 "version 4.4.2" "Allegro" "Allegro manual" .SH NAME set_palette_range \- Sets a specific range of the palette. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void set_palette_range(const PALETTE p, int from, int to, int vsync); .SH DESCRIPTION Sets the palette entries between from and to (inclusive: pass 0 and 255 to set the entire palette). If vsync is set it waits for the vertical retrace, otherwise it sets the colors immediately. Example: .nf PALETTE palette; ... /* Modify the first 16 entries. */ change_first_16_colors(palette); /* Now update them waiting for vsync. */ set_palette_range(palette, 0, 15, 1); .fi .SH SEE ALSO .BR set_palette (3alleg4), .BR get_palette_range (3alleg4), .BR exzbuf (3alleg4)