style fixes for SDL_PROC macros.

This commit is contained in:
Ozkan Sezer
2023-05-19 14:10:02 +03:00
parent df9d0fb332
commit 92a487f2e4
7 changed files with 7 additions and 7 deletions

View File

@@ -26,7 +26,7 @@
typedef struct GL_Context
{
#define SDL_PROC(ret, func, params) ret(APIENTRY *func) params;
#define SDL_PROC(ret, func, params) ret (APIENTRY *func) params;
#include "../src/render/opengl/SDL_glfuncs.h"
#undef SDL_PROC
} GL_Context;

View File

@@ -33,7 +33,7 @@
typedef struct GLES2_Context
{
#define SDL_PROC(ret, func, params) ret(APIENTRY *func) params;
#define SDL_PROC(ret, func, params) ret (APIENTRY *func) params;
#include "../src/render/opengles2/SDL_gles2funcs.h"
#undef SDL_PROC
} GLES2_Context;

View File

@@ -31,7 +31,7 @@
typedef struct GLES2_Context
{
#define SDL_PROC(ret, func, params) ret(APIENTRY *func) params;
#define SDL_PROC(ret, func, params) ret (APIENTRY *func) params;
#include "../src/render/opengles2/SDL_gles2funcs.h"
#undef SDL_PROC
} GLES2_Context;