diff options
author | Chad Versace <[email protected]> | 2016-10-12 15:52:12 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2016-10-14 11:19:27 -0700 |
commit | c177ef9d47943f648a13beed14269f468583c16e (patch) | |
tree | 8980956045b42c241c710dc956389b76bc1aa0c1 /src/egl | |
parent | 27f4e381736f0abee35aa25035cb54b5c34f9bef (diff) |
egl: Don't advertise unsupported platform extensions
Mesa's set of supported platform extensions depends on the autoconf
option --with-egl-platforms=foo,bar,baz. If --with-egl-platforms lacks
foo, then eglGetPlatformDisplay(EGL_PLATFORM_FOO, ...) unconditonally
fails.
So, if --with-egl-platforms lacks foo, then remove
EGL_VENDOR_platform_foo from the EGL client extension string.
Cc: [email protected]
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/main/eglglobals.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/egl/main/eglglobals.c b/src/egl/main/eglglobals.c index ac1a263ab52..8fffa550f56 100644 --- a/src/egl/main/eglglobals.c +++ b/src/egl/main/eglglobals.c @@ -53,11 +53,17 @@ struct _egl_global _eglGlobal = /* ClientExtensionString */ "EGL_EXT_client_extensions" " EGL_EXT_platform_base" +#ifdef HAVE_WAYLAND_PLATFORM " EGL_EXT_platform_wayland" +#endif +#ifdef HAVE_X11_PLATFORM " EGL_EXT_platform_x11" +#endif +#ifdef HAVE_DRM_PLATFORM + " EGL_MESA_platform_gbm" +#endif " EGL_KHR_client_get_all_proc_addresses" - " EGL_KHR_debug" - " EGL_MESA_platform_gbm", + " EGL_KHR_debug", NULL, /* debugCallback */ _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR, /* debugTypesEnabled */ |