diff options
author | Eric Engestrom <[email protected]> | 2017-07-30 02:11:57 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-08-01 17:43:06 +0100 |
commit | 270a1c7110e97faf9bf14749adf55078565163fb (patch) | |
tree | e565501111b3ff9a374c6a8e3451e233ef89e106 /src/egl | |
parent | 991ec1b81a76de24fd013d2fd6b803408c97ab64 (diff) |
egl: use designated initaliser for _eglGlobal
Turn comments into actual code, that the compiler can check for us :)
(Speaking of, one of the comments had a typo. Challenge: find it)
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/main/eglglobals.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/egl/main/eglglobals.c b/src/egl/main/eglglobals.c index 90712266189..c506bd6a9db 100644 --- a/src/egl/main/eglglobals.c +++ b/src/egl/main/eglglobals.c @@ -49,22 +49,22 @@ static mtx_t _eglGlobalMutex = _MTX_INITIALIZER_NP; struct _egl_global _eglGlobal = { - &_eglGlobalMutex, /* Mutex */ - NULL, /* DisplayList */ - 2, /* NumAtExitCalls */ - { + .Mutex = &_eglGlobalMutex, + .DisplayList = NULL, + .NumAtExitCalls = 2, + .AtExitCalls = { /* default AtExitCalls, called in reverse order */ _eglUnloadDrivers, /* always called last */ _eglFiniDisplay }, - /* ClientOnlyExtensionString */ + .ClientOnlyExtensionString = "EGL_EXT_client_extensions" " EGL_EXT_platform_base" " EGL_KHR_client_get_all_proc_addresses" " EGL_KHR_debug", - /* PlatformExtensionString */ + .PlatformExtensionString = #ifdef HAVE_WAYLAND_PLATFORM " EGL_EXT_platform_wayland" #endif @@ -79,10 +79,10 @@ struct _egl_global _eglGlobal = #endif "", - NULL, /* ClientExtensionsString */ + .ClientExtensionString = NULL, - NULL, /* debugCallback */ - _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR, /* debugTypesEnabled */ + .debugCallback = NULL, + .debugTypesEnabled = _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR, }; |