egl: Group data fields before function pointers in SDL_EGL_VideoData.
parent
0ad4956c06
commit
0aff42a159
|
@ -40,6 +40,8 @@ typedef struct SDL_EGL_VideoData
|
|||
int egl_surfacetype;
|
||||
int egl_version_major, egl_version_minor;
|
||||
EGLint egl_required_visual_id;
|
||||
SDL_bool is_offscreen; /* whether EGL display was offscreen */
|
||||
EGLenum apitype; /* EGL_OPENGL_ES_API, EGL_OPENGL_API, etc */
|
||||
|
||||
EGLDisplay(EGLAPIENTRY *eglGetDisplay) (NativeDisplayType display);
|
||||
EGLDisplay(EGLAPIENTRY *eglGetPlatformDisplay) (EGLenum platform,
|
||||
|
@ -114,9 +116,6 @@ typedef struct SDL_EGL_VideoData
|
|||
EGLint(EGLAPIENTRY *eglClientWaitSyncKHR)(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
|
||||
|
||||
/* Atomic functions end */
|
||||
|
||||
SDL_bool is_offscreen; /* whether EGL display was offscreen */
|
||||
EGLenum apitype; /* EGL_OPENGL_ES_API, EGL_OPENGL_API, etc */
|
||||
} SDL_EGL_VideoData;
|
||||
|
||||
/* OpenGLES functions */
|
||||
|
|
Loading…
Reference in New Issue