diff options
author | Chad Versace <[email protected]> | 2013-10-11 16:04:55 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2013-11-26 12:50:29 -0800 |
commit | 3c58d4c700bc1d0a0d56c26645e900201b7f249e (patch) | |
tree | a52cc2fda7db2f83c59f23f2f304cf9cae23d807 /src/egl/main/eglglobals.h | |
parent | ddc77c5092b6f782327a7014b320f31f5f4e8e93 (diff) |
egl: Enable EGL_EXT_client_extensions
Insert two fields into _egl_global to hold the client extensions and
statically initialize them:
ClientExtensions // a struct of bools
ClientExtensionString
Post-patch, Mesa supports exactly one client extension,
EGL_EXT_client_extensions.
Signed-off-by: Chad Versace <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/egl/main/eglglobals.h')
-rw-r--r-- | src/egl/main/eglglobals.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/egl/main/eglglobals.h b/src/egl/main/eglglobals.h index b40e30e2251..63428f7f45a 100644 --- a/src/egl/main/eglglobals.h +++ b/src/egl/main/eglglobals.h @@ -31,6 +31,7 @@ #ifndef EGLGLOBALS_INCLUDED #define EGLGLOBALS_INCLUDED +#include <stdbool.h> #include "egltypedefs.h" #include "eglmutex.h" @@ -48,6 +49,12 @@ struct _egl_global EGLint NumAtExitCalls; void (*AtExitCalls[10])(void); + + struct _egl_client_extensions { + bool EXT_client_extensions; + } ClientExtensions; + + const char *ClientExtensionString; }; |