diff options
author | Ian Romanick <[email protected]> | 2012-07-18 09:38:34 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-08-06 15:37:04 -0700 |
commit | b50703aea55450e04bcd8154335774786e0f253b (patch) | |
tree | 15f7e93313c66946f8199e530ee2d4e7ebe89010 /src/egl/main/eglmisc.c | |
parent | cb77f5dd1f6658fca671454c9b5be9a23c3bf3e4 (diff) |
egl: Replace KHR_surfaceless_* extensions with KHR_surfaceless_context
KHR extension name is reserved for Khronos ratified extensions, and there is
no such thing as EGL_KHR_surfaceless_{gles1,gles2,opengl}. Replace these
three extensions with EGL_KHR_surfaceless_context since that extension
actually exists.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/egl/main/eglmisc.c')
-rw-r--r-- | src/egl/main/eglmisc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/egl/main/eglmisc.c b/src/egl/main/eglmisc.c index 9d534f0a5be..b4f1e717701 100644 --- a/src/egl/main/eglmisc.c +++ b/src/egl/main/eglmisc.c @@ -107,9 +107,7 @@ _eglUpdateExtensionsString(_EGLDisplay *dpy) _EGL_CHECK_EXTENSION(KHR_reusable_sync); _EGL_CHECK_EXTENSION(KHR_fence_sync); - _EGL_CHECK_EXTENSION(KHR_surfaceless_gles1); - _EGL_CHECK_EXTENSION(KHR_surfaceless_gles2); - _EGL_CHECK_EXTENSION(KHR_surfaceless_opengl); + _EGL_CHECK_EXTENSION(KHR_surfaceless_context); _EGL_CHECK_EXTENSION(NOK_swap_region); _EGL_CHECK_EXTENSION(NOK_texture_from_pixmap); |