Skip to content

Commit 22422f7

Browse files
committed
Fixed ABI compatibility with 3.1.6
1 parent d7b10d0 commit 22422f7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/dynapi/SDL_dynapi.sym

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,6 @@ SDL3_0.0.0 {
974974
SDL_WaitEventTimeout;
975975
SDL_WaitForGPUFences;
976976
SDL_WaitForGPUIdle;
977-
SDL_WaitForGPUSwapchain;
978977
SDL_WaitProcess;
979978
SDL_WaitSemaphore;
980979
SDL_WaitSemaphoreTimeout;
@@ -1206,6 +1205,7 @@ SDL3_0.0.0 {
12061205
SDL_RunOnMainThread;
12071206
SDL_SetGPUAllowedFramesInFlight;
12081207
SDL_RenderTextureAffine;
1208+
SDL_WaitForGPUSwapchain;
12091209
SDL_WaitAndAcquireGPUSwapchainTexture;
12101210
SDL_RenderDebugTextFormat;
12111211
SDL_CreateTray;

src/dynapi/SDL_dynapi_overrides.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,6 @@
999999
#define SDL_WaitEventTimeout SDL_WaitEventTimeout_REAL
10001000
#define SDL_WaitForGPUFences SDL_WaitForGPUFences_REAL
10011001
#define SDL_WaitForGPUIdle SDL_WaitForGPUIdle_REAL
1002-
#define SDL_WaitForGPUSwapchain SDL_WaitForGPUSwapchain_REAL
10031002
#define SDL_WaitProcess SDL_WaitProcess_REAL
10041003
#define SDL_WaitSemaphore SDL_WaitSemaphore_REAL
10051004
#define SDL_WaitSemaphoreTimeout SDL_WaitSemaphoreTimeout_REAL
@@ -1231,6 +1230,7 @@
12311230
#define SDL_RunOnMainThread SDL_RunOnMainThread_REAL
12321231
#define SDL_SetGPUAllowedFramesInFlight SDL_SetGPUAllowedFramesInFlight_REAL
12331232
#define SDL_RenderTextureAffine SDL_RenderTextureAffine_REAL
1233+
#define SDL_WaitForGPUSwapchain SDL_WaitForGPUSwapchain_REAL
12341234
#define SDL_WaitAndAcquireGPUSwapchainTexture SDL_WaitAndAcquireGPUSwapchainTexture_REAL
12351235
#define SDL_RenderDebugTextFormat SDL_RenderDebugTextFormat_REAL
12361236
#define SDL_CreateTray SDL_CreateTray_REAL

src/dynapi/SDL_dynapi_procs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,6 @@ SDL_DYNAPI_PROC(bool,SDL_WaitEvent,(SDL_Event *a),(a),return)
10091009
SDL_DYNAPI_PROC(bool,SDL_WaitEventTimeout,(SDL_Event *a, Sint32 b),(a,b),return)
10101010
SDL_DYNAPI_PROC(bool,SDL_WaitForGPUFences,(SDL_GPUDevice *a, bool b, SDL_GPUFence *const *c, Uint32 d),(a,b,c,d),return)
10111011
SDL_DYNAPI_PROC(bool,SDL_WaitForGPUIdle,(SDL_GPUDevice *a),(a),return)
1012-
SDL_DYNAPI_PROC(bool,SDL_WaitForGPUSwapchain,(SDL_GPUDevice *a, SDL_Window *b),(a,b),return)
10131012
SDL_DYNAPI_PROC(bool,SDL_WaitProcess,(SDL_Process *a, bool b, int *c),(a,b,c),return)
10141013
SDL_DYNAPI_PROC(void,SDL_WaitSemaphore,(SDL_Semaphore *a),(a),)
10151014
SDL_DYNAPI_PROC(bool,SDL_WaitSemaphoreTimeout,(SDL_Semaphore *a, Sint32 b),(a,b),return)
@@ -1237,6 +1236,7 @@ SDL_DYNAPI_PROC(bool,SDL_IsMainThread,(void),(),return)
12371236
SDL_DYNAPI_PROC(bool,SDL_RunOnMainThread,(SDL_MainThreadCallback a,void *b,bool c),(a,b,c),return)
12381237
SDL_DYNAPI_PROC(bool,SDL_SetGPUAllowedFramesInFlight,(SDL_GPUDevice *a,Uint32 b),(a,b),return)
12391238
SDL_DYNAPI_PROC(bool,SDL_RenderTextureAffine,(SDL_Renderer *a,SDL_Texture *b,const SDL_FRect *c,const SDL_FPoint *d,const SDL_FPoint *e,const SDL_FPoint *f),(a,b,c,d,e,f),return)
1239+
SDL_DYNAPI_PROC(bool,SDL_WaitForGPUSwapchain,(SDL_GPUDevice *a, SDL_Window *b),(a,b),return)
12401240
SDL_DYNAPI_PROC(bool,SDL_WaitAndAcquireGPUSwapchainTexture,(SDL_GPUCommandBuffer *a,SDL_Window *b,SDL_GPUTexture **c,Uint32 *d,Uint32 *e),(a,b,c,d,e),return)
12411241
#ifndef SDL_DYNAPI_PROC_NO_VARARGS
12421242
SDL_DYNAPI_PROC(bool,SDL_RenderDebugTextFormat,(SDL_Renderer *a,float b,float c,SDL_PRINTF_FORMAT_STRING const char *d,...),(a,b,c,d),return)

0 commit comments

Comments
 (0)