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.
17 lines
367 B
C
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, ¢er_x, ¢er_y, map);
|
|
}
|
|
|
|
#endif
|