mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 01:27:11 +02:00
26 lines
665 B
C
26 lines
665 B
C
#include <gint/image.h>
|
|
|
|
void image_fill(image_t *img, int value)
|
|
{
|
|
if(!image_target(img, img, NOT_P4, DATA_RW))
|
|
return;
|
|
|
|
void *img_px = img->data;
|
|
|
|
if(IMAGE_IS_RGB16(img->format)) {
|
|
for(int y = 0; y < img->height; y++) {
|
|
for(int x = 0; x < img->width; x++) {
|
|
((uint16_t *)img_px)[x] = value;
|
|
}
|
|
img_px += img->stride;
|
|
}
|
|
}
|
|
else if(IMAGE_IS_P8(img->format)) {
|
|
for(int y = 0; y < img->height; y++) {
|
|
for(int x = 0; x < img->width; x++) {
|
|
((int8_t *)img_px)[x] = value;
|
|
}
|
|
img_px += img->stride;
|
|
}
|
|
}
|
|
}
|