mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
Nothing interesting in this commit, just moving files around, making sure every target compiles every file, and controlling with macros instead. Basic support for fxg3a target in CMakeLists.txt, cmake/FindGint.cmake, giteapc.make and include/gint/config.h.in. The rest is forgettable.
36 lines
837 B
C
36 lines
837 B
C
#include <gint/image.h>
|
|
#include <gint/config.h>
|
|
#if GINT_RENDER_RGB
|
|
|
|
void dsubimage_p8_effect(int x, int y, image_t const *img,
|
|
int left, int top, int w, int h, int eff, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, eff);
|
|
|
|
if(eff & IMAGE_CLEARBG) {
|
|
int bg = va_arg(args, int);
|
|
dsubimage_p8_clearbg(x, y, img, left, top, w, h, eff, bg);
|
|
}
|
|
else if(eff & IMAGE_SWAPCOLOR) {
|
|
int from = va_arg(args, int);
|
|
int to = va_arg(args, int);
|
|
dsubimage_p8_swapcolor(x, y, img, left, top, w, h, eff, from,
|
|
to);
|
|
}
|
|
else if(eff & IMAGE_ADDBG) {
|
|
int bg = va_arg(args, int);
|
|
dsubimage_p8_addbg(x, y, img, left, top, w, h, eff, bg);
|
|
}
|
|
else if(eff & IMAGE_DYE) {
|
|
int dye = va_arg(args, int);
|
|
dsubimage_p8_dye(x, y, img, left, top, w, h, eff, dye);
|
|
}
|
|
else {
|
|
dsubimage_p8(x, y, img, left, top, w, h, eff);
|
|
}
|
|
|
|
va_end(args);
|
|
}
|
|
|
|
#endif
|