Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Unified Diff: ui/gl/generate_bindings.py

Issue 11428140: gpu: Add async pixel transfer interface, stub and tests. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address Feedback. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gl/async_pixel_transfer_delegate_stub.cc ('k') | ui/gl/gl.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/generate_bindings.py
diff --git a/ui/gl/generate_bindings.py b/ui/gl/generate_bindings.py
index 3671fed34e8d2b26e560929f2c7b6efc023453c8..57c559a61264a0eb59c022c4428c8b289f490b71 100755
--- a/ui/gl/generate_bindings.py
+++ b/ui/gl/generate_bindings.py
@@ -902,6 +902,19 @@ EGL_FUNCTIONS = [
'names': ['eglQuerySurfacePointerANGLE'],
'arguments':
'EGLDisplay dpy, EGLSurface surface, EGLint attribute, void** value', },
+{ 'return_type': 'EGLSyncKHR',
+ 'names': ['eglCreateSyncKHR'],
+ 'arguments': 'EGLDisplay dpy, EGLenum type, const EGLint* attrib_list',
+ 'other_extensions': ['EGL_KHR_fence_sync'] },
+{ 'return_type': 'EGLint',
+ 'names': ['eglClientWaitSyncKHR'],
+ 'arguments': 'EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, '
+ 'EGLTimeKHR timeout',
+ 'other_extensions': ['EGL_KHR_fence_sync'] },
+{ 'return_type': 'EGLBoolean',
+ 'names': ['eglDestroySyncKHR'],
+ 'arguments': 'EGLDisplay dpy, EGLSyncKHR sync',
+ 'other_extensions': ['EGL_KHR_fence_sync'] },
]
WGL_FUNCTIONS = [
« no previous file with comments | « ui/gl/async_pixel_transfer_delegate_stub.cc ('k') | ui/gl/gl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698