1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/render/software/SDL_rotate.h Fri Jun 01 19:51:08 2012 -0300
1.3 @@ -0,0 +1,6 @@
1.4 +#ifndef MIN
1.5 +#define MIN(a,b) (((a) < (b)) ? (a) : (b))
1.6 +#endif
1.7 +
1.8 +extern SDL_Surface *_rotateSurface(SDL_Surface * src, double angle, int centerx, int centery, int smooth, int flipx, int flipy, int dstwidth, int dstheight, double cangle, double sangle);
1.9 +extern void _rotozoomSurfaceSizeTrig(int width, int height, double angle, int *dstwidth, int *dstheight, double *cangle, double *sangle);
1.10 \ No newline at end of file