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/eglapi.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/eglapi.c')
-rw-r--r-- | src/egl/main/eglapi.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c index ffc404cc2d7..bcc546557b8 100644 --- a/src/egl/main/eglapi.c +++ b/src/egl/main/eglapi.c @@ -427,9 +427,7 @@ eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list, if (!config) { /* config may be NULL if surfaceless */ - if (!disp->Extensions.KHR_surfaceless_gles1 && - !disp->Extensions.KHR_surfaceless_gles2 && - !disp->Extensions.KHR_surfaceless_opengl) + if (!disp->Extensions.KHR_surfaceless_context) RETURN_EGL_ERROR(disp, EGL_BAD_CONFIG, EGL_NO_CONTEXT); } @@ -487,9 +485,7 @@ eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_FALSE); if (!draw_surf || !read_surf) { /* surfaces may be NULL if surfaceless */ - if (!disp->Extensions.KHR_surfaceless_gles1 && - !disp->Extensions.KHR_surfaceless_gles2 && - !disp->Extensions.KHR_surfaceless_opengl) + if (!disp->Extensions.KHR_surfaceless_context) RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE); if ((!draw_surf && draw != EGL_NO_SURFACE) || |