diff options
author | Chad Versace <[email protected]> | 2014-11-20 10:26:38 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2014-12-07 20:58:25 -0800 |
commit | 7e8ba77c49b3fc0fe56d0ba60acc734d389fd9bd (patch) | |
tree | c2895e4d60567830d254c96caf7a67a776480335 /src/egl/main/eglglobals.c | |
parent | 0b6e0aa5ae51c965c9d73f4e620e8d8449fb965e (diff) |
egl: Expose EGL_KHR_get_all_proc_addresses and its client extension
Mesa already implements the behavior of EGL_KHR_get_all_proc_addresses
and EGL_KHR_client_get_all_proc_addresses. This patch just exposes the
extension strings.
See: https://www.khronos.org/registry/egl/extensions/KHR/EGL_KHR_get_all_proc_addresses.txt
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/egl/main/eglglobals.c')
-rw-r--r-- | src/egl/main/eglglobals.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/egl/main/eglglobals.c b/src/egl/main/eglglobals.c index cf669cff681..56fe9e29d8b 100644 --- a/src/egl/main/eglglobals.c +++ b/src/egl/main/eglglobals.c @@ -55,7 +55,8 @@ struct _egl_global _eglGlobal = true, /* EGL_EXT_platform_base */ true, /* EGL_EXT_platform_x11 */ true, /* EGL_EXT_platform_wayland */ - true /* EGL_MESA_platform_gbm */ + true, /* EGL_MESA_platform_gbm */ + true, /* EGL_KHR_client_get_all_proc_addresses */ }, /* ClientExtensionsString */ @@ -64,6 +65,7 @@ struct _egl_global _eglGlobal = " EGL_EXT_platform_x11" " EGL_EXT_platform_wayland" " EGL_MESA_platform_gbm" + " EGL_KHR_client_get_all_proc_addresses" }; |