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.
26 lines
678 B
C
26 lines
678 B
C
#include <gint/display.h>
|
|
#include <gint/image.h>
|
|
#include <gint/config.h>
|
|
#if GINT_RENDER_RGB
|
|
|
|
void dimage_p4_dye(int x, int y, image_t const *img, int eff, int dye_color)
|
|
{
|
|
dsubimage_p4_dye(x, y, img, 0, 0, img->width, img->height, eff,
|
|
dye_color);
|
|
}
|
|
|
|
void dsubimage_p4_dye(int x, int y, image_t const *img,
|
|
int left, int top, int w, int h, int eff, int dye_color)
|
|
{
|
|
struct gint_image_box box = { x, y, w, h, left, top };
|
|
struct gint_image_cmd cmd;
|
|
|
|
if(!gint_image_mkcmd(&box, img, eff, true, true, &cmd, &dwindow))
|
|
return;
|
|
cmd.color_1 = image_alpha(img->format);
|
|
cmd.color_2 = dye_color;
|
|
cmd.loop = gint_image_p4_dye;
|
|
gint_image_p4_loop(DWIDTH, &cmd);
|
|
}
|
|
|
|
#endif
|