mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-03 23:43:36 +01:00
13 lines
308 B
C
13 lines
308 B
C
|
#include <gint/image.h>
|
||
|
|
||
|
int image_decode_pixel(image_t const *img, int pixel)
|
||
|
{
|
||
|
if(IMAGE_IS_RGB16(img->format))
|
||
|
return pixel;
|
||
|
else if(IMAGE_IS_P8(img->format))
|
||
|
return img->palette[pixel+128];
|
||
|
else if(IMAGE_IS_P4(img->format))
|
||
|
return img->palette[pixel];
|
||
|
return -1;
|
||
|
}
|