diff options
author | Sarah Sharp <[email protected]> | 2014-05-06 12:10:57 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2014-05-20 15:19:48 -0700 |
commit | c524f3ef9155caba6cd4f9fc72485426b1da76fd (patch) | |
tree | 38b7c54d136949079e9c82477b2aa1d374ab7b99 /src/egl/main/egldisplay.h | |
parent | f6e50994e12f1135748a51bf6380dc04bd5f4907 (diff) |
egl: Add EGL_CHROMIUM_sync_control extension.
Chromium defined a new GL extension (that isn't registered with Khronos).
We need to add an EGL extension for it, so we can migrate ChromeOS on
Intel systems to use EGL instead of GLX.
http://git.chromium.org/gitweb/?p=chromium/src/third_party/khronos.git;a=commitdiff;h=27cbfdab35c601f70aa150581ad1448d0401f447
The EGL_CHROMIUM_sync_control extension is similar to the GLX extension
OML_sync_control, but only defines one function,
eglGetSyncValuesCHROMIUM, which is equivalent to glXGetSyncValuesOML.
http://www.opengl.org/registry/specs/OML/glx_sync_control.txt
Signed-off-by: Sarah Sharp <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Cc: Jamey Sharp <[email protected]>
Cc: Ian Romanick <[email protected]>
Cc: Stéphane Marchesin <[email protected]>
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r-- | src/egl/main/egldisplay.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index 970c21a9289..13b95327bc1 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -113,6 +113,8 @@ struct _egl_extensions EGLBoolean ANDROID_image_native_buffer; + EGLBoolean CHROMIUM_sync_control; + EGLBoolean NV_post_sub_buffer; EGLBoolean EXT_create_context_robustness; |