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

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: Rebase. Fix lint. 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
Index: ui/gl/generate_bindings.py
diff --git a/ui/gl/generate_bindings.py b/ui/gl/generate_bindings.py
index 3671fed34e8d2b26e560929f2c7b6efc023453c8..044c73100ee1e2c066b5f8e6e94ef6f53c3850ec 100755
--- a/ui/gl/generate_bindings.py
+++ b/ui/gl/generate_bindings.py
@@ -902,6 +902,13 @@ 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', },
+{ 'return_type': 'EGLint',
+ 'names': ['eglClientWaitSyncKHR'],
+ 'arguments': 'EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, '
+ 'EGLTimeKHR timeout', },
]
WGL_FUNCTIONS = [

Powered by Google App Engine
This is Rietveld 408576698