diff options
author | Chia-I Wu <olv@lunarg.com> | 2010-08-14 23:09:12 +0800 |
---|---|---|
committer | Chia-I Wu <olv@lunarg.com> | 2010-08-17 00:06:19 +0800 |
commit | 4eebea74a81ec5fbacf2347ea88cac137ddd4d69 (patch) | |
tree | d789cb3e6205ea0f4b80d9e954426fffcfee5fef /src/egl/main/eglmisc.c | |
parent | b2a575ff288a909eeddefe5168e29d15e6d17ab8 (diff) | |
download | external_mesa3d-4eebea74a81ec5fbacf2347ea88cac137ddd4d69.zip external_mesa3d-4eebea74a81ec5fbacf2347ea88cac137ddd4d69.tar.gz external_mesa3d-4eebea74a81ec5fbacf2347ea88cac137ddd4d69.tar.bz2 |
egl: Add support for EGL_KHR_reusable_sync.
Individual drivers still need to support and enable the extension.
Diffstat (limited to 'src/egl/main/eglmisc.c')
-rw-r--r-- | src/egl/main/eglmisc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/egl/main/eglmisc.c b/src/egl/main/eglmisc.c index 985d1e0..2ef6ba5 100644 --- a/src/egl/main/eglmisc.c +++ b/src/egl/main/eglmisc.c @@ -97,6 +97,8 @@ _eglUpdateExtensionsString(_EGLDisplay *dpy) _EGL_CHECK_EXTENSION(KHR_gl_texture_3D_image); _EGL_CHECK_EXTENSION(KHR_gl_renderbuffer_image); + _EGL_CHECK_EXTENSION(KHR_reusable_sync); + _EGL_CHECK_EXTENSION(KHR_surfaceless_gles1); _EGL_CHECK_EXTENSION(KHR_surfaceless_gles2); _EGL_CHECK_EXTENSION(KHR_surfaceless_opengl); |