mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-26 15:58:41 +00:00
Added SDL_RotateSurface()
Fixes https://github.com/libsdl-org/SDL/issues/14269
This commit is contained in:
parent
a402af506c
commit
e18d63a4e2
15 changed files with 286 additions and 33 deletions
|
|
@ -1267,6 +1267,7 @@ SDL3_0.0.0 {
|
|||
SDL_GetSystemPageSize;
|
||||
SDL_GetPenDeviceType;
|
||||
SDL_CreateAnimatedCursor;
|
||||
SDL_RotateSurface;
|
||||
# extra symbols go here (don't modify this line)
|
||||
local: *;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1293,3 +1293,4 @@
|
|||
#define SDL_GetSystemPageSize SDL_GetSystemPageSize_REAL
|
||||
#define SDL_GetPenDeviceType SDL_GetPenDeviceType_REAL
|
||||
#define SDL_CreateAnimatedCursor SDL_CreateAnimatedCursor_REAL
|
||||
#define SDL_RotateSurface SDL_RotateSurface_REAL
|
||||
|
|
|
|||
|
|
@ -1301,3 +1301,4 @@ SDL_DYNAPI_PROC(bool,SDL_SavePNG,(SDL_Surface *a,const char *b),(a,b),return)
|
|||
SDL_DYNAPI_PROC(int,SDL_GetSystemPageSize,(void),(),return)
|
||||
SDL_DYNAPI_PROC(SDL_PenDeviceType,SDL_GetPenDeviceType,(SDL_PenID a),(a),return)
|
||||
SDL_DYNAPI_PROC(SDL_Cursor*,SDL_CreateAnimatedCursor,(SDL_CursorFrameInfo *a,int b,int c,int d),(a,b,c,d),return)
|
||||
SDL_DYNAPI_PROC(SDL_Surface*,SDL_RotateSurface,(SDL_Surface *a,float b),(a,b),return)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue