diff options
author | Adam Jackson <[email protected]> | 2016-09-09 12:25:34 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2016-09-12 11:29:09 -0400 |
commit | d9f5b1915b397d4baaf4c9c23a93fda49f3db4ca (patch) | |
tree | f5851db4b712fa6b2d01c45965794d01417312e3 /src/egl/main/eglcontext.c | |
parent | cc45a5c30872e2070aae6a79dbe0e2bcf7404917 (diff) |
egl: Rename MESA_configless_context bit to KHR_no_config_context
Keep the old name in the extension string, but refer to the KHR
extension internally.
Reviewed-by: Kristian Høgsberg <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/egl/main/eglcontext.c')
-rw-r--r-- | src/egl/main/eglcontext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/main/eglcontext.c b/src/egl/main/eglcontext.c index 7eac79ac952..60625f64705 100644 --- a/src/egl/main/eglcontext.c +++ b/src/egl/main/eglcontext.c @@ -642,9 +642,9 @@ _eglCheckMakeCurrent(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read) (read && read->Config != ctx->Config)) return _eglError(EGL_BAD_MATCH, "eglMakeCurrent"); } else { - /* Otherwise we must be using the EGL_MESA_configless_context + /* Otherwise we must be using the EGL_KHR_no_config_context * extension */ - assert(dpy->Extensions.MESA_configless_context); + assert(dpy->Extensions.KHR_no_config_context); /* The extension doesn't permit binding draw and read buffers with * differing contexts */ |