mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 01:27:11 +02:00
7 lines
136 B
C
7 lines
136 B
C
#include <gint/image.h>
|
|
|
|
int image_palette_size(image_t const *img)
|
|
{
|
|
return (img->color_count >= 0) ? img->color_count* 2 : -1;
|
|
}
|
|
|