gint/src/image/image_rotate.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
367 B
C

#include <gint/image.h>
#include <gint/config.h>
#if GINT_RENDER_RGB
void image_rotate(image_t const *src, float angle, bool resize,
struct image_linear_map *map)
{
if(!image_valid(src))
return;
int center_x = src->width / 2;
int center_y = src->height / 2;
image_rotate_around(src, angle, resize, &center_x, &center_y, map);
}
#endif