create_rgb_table

Generates an RGB mapping table with lookup data for a palette.

Description

void create_rgb_table(RGB_MAP *table, const PALETTE pal, void (*callback)(int pos));
Fills the specified RGB mapping table with lookup data for the specified palette. If the callback function is not NULL, it will be called 256 times during the calculation, allowing you to display a progress indicator. Example:
      RGB_MAP rgb_table;

create_rgb_table(&rgb_table, palette, NULL); rgb_map = &rgb_table;
See Also:
Examples using this:

Related Projects

The following projects include source code containing this keyword: