mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 01:27:11 +02:00
49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
#include <gint/image.h>
|
|
#include <gint/defs/util.h>
|
|
|
|
void image_copy(image_t const *src, image_t *dst, bool copy_alpha)
|
|
{
|
|
if(!image_target(src, dst, NOT_P4, DATA_RW, SAME_DEPTH))
|
|
return;
|
|
if(!IMAGE_IS_ALPHA(src->format))
|
|
copy_alpha = true;
|
|
|
|
/* Clip the input to match the size of the output */
|
|
int w = min(src->width, dst->width);
|
|
int h = min(src->height, dst->height);
|
|
if(w <= 0 || h <= 0)
|
|
return;
|
|
|
|
void *src_px = src->data;
|
|
void *dst_px = dst->data;
|
|
|
|
if(IMAGE_IS_RGB16(src->format)) {
|
|
int src_alpha = copy_alpha ? -1 : src->alpha;
|
|
int dst_alpha = IMAGE_IS_ALPHA(dst->format) ? -1 : dst->alpha;
|
|
|
|
do {
|
|
for(int x = 0; x < w; x++) {
|
|
int px = ((uint16_t *)src_px)[x];
|
|
if(px != src_alpha) {
|
|
px ^= (px == dst_alpha);
|
|
((uint16_t *)dst_px)[x] = px;
|
|
}
|
|
}
|
|
src_px += src->stride;
|
|
dst_px += dst->stride;
|
|
} while(--h > 0);
|
|
}
|
|
else if(IMAGE_IS_P8(src->format)) {
|
|
int src_alpha = copy_alpha ? 256 : src->alpha;
|
|
|
|
do {
|
|
for(int x = 0; x < w; x++) {
|
|
int px = ((int8_t *)src_px)[x];
|
|
if(px != src_alpha)
|
|
((int8_t *)dst_px)[x] = px;
|
|
}
|
|
src_px += src->stride;
|
|
dst_px += dst->stride;
|
|
} while(--h > 0);
|
|
}
|
|
}
|