mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-19 09:26:54 +02:00
9 lines
280 B
C
9 lines
280 B
C
#include <gint/image.h>
|
|
#include "fixed.h"
|
|
|
|
void image_rotate_around(image_t const *src, float angle, bool resize,
|
|
int *center_x, int *center_y, struct image_linear_map *map)
|
|
{
|
|
image_rotate_around_scale(src, angle, fconst(1.0), resize, center_x,
|
|
center_y, map);
|
|
}
|