slouken@8616
|
1 |
/*
|
slouken@8616
|
2 |
Simple DirectMedia Layer
|
slouken@8616
|
3 |
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
|
slouken@8616
|
4 |
|
slouken@8616
|
5 |
This software is provided 'as-is', without any express or implied
|
slouken@8616
|
6 |
warranty. In no event will the authors be held liable for any damages
|
slouken@8616
|
7 |
arising from the use of this software.
|
slouken@8616
|
8 |
|
slouken@8616
|
9 |
Permission is granted to anyone to use this software for any purpose,
|
slouken@8616
|
10 |
including commercial applications, and to alter it and redistribute it
|
slouken@8616
|
11 |
freely, subject to the following restrictions:
|
slouken@8616
|
12 |
|
slouken@8616
|
13 |
1. The origin of this software must not be misrepresented; you must not
|
slouken@8616
|
14 |
claim that you wrote the original software. If you use this software
|
slouken@8616
|
15 |
in a product, an acknowledgment in the product documentation would be
|
slouken@8616
|
16 |
appreciated but is not required.
|
slouken@8616
|
17 |
2. Altered source versions must be plainly marked as such, and must not be
|
slouken@8616
|
18 |
misrepresented as being the original software.
|
slouken@8616
|
19 |
3. This notice may not be removed or altered from any source distribution.
|
slouken@8616
|
20 |
*/
|
slouken@8616
|
21 |
|
gabomdq@6320
|
22 |
#ifndef MIN
|
gabomdq@6320
|
23 |
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
gabomdq@6320
|
24 |
#endif
|
gabomdq@6320
|
25 |
|
slouken@7859
|
26 |
extern SDL_Surface *SDLgfx_rotateSurface(SDL_Surface * src, double angle, int centerx, int centery, int smooth, int flipx, int flipy, int dstwidth, int dstheight, double cangle, double sangle);
|
slouken@7859
|
27 |
extern void SDLgfx_rotozoomSurfaceSizeTrig(int width, int height, double angle, int *dstwidth, int *dstheight, double *cangle, double *sangle);
|
icculus@6375
|
28 |
|