gint/src/render-cg/dsubimage.c
Lephe 28bea2e1ce
gint: switch from file filters to config macros + basic fxg3a target
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.
2024-03-23 10:02:51 +01:00

17 lines
506 B
C

#include <gint/display.h>
#include <gint/config.h>
#if GINT_RENDER_RGB
/* dsubimage(): Render a section of an image */
void dsubimage(int x, int y, image_t const *img, int left, int top,
int w, int h, int flags)
{
if(IMAGE_IS_RGB16(img->format))
return dsubimage_rgb16(x, y, img, left, top, w, h, flags);
else if(IMAGE_IS_P8(img->format))
return dsubimage_p8(x, y, img, left, top, w, h, flags);
else if(IMAGE_IS_P4(img->format))
return dsubimage_p4(x, y, img, left, top, w, h, flags);
}
#endif