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

Unified Diff: app/gfx/gl/generate_bindings.py

Issue 6313013: Exposed GL_NV_fence bindings to GPU process.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 months 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 | « no previous file | app/gfx/gl/gl_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/gfx/gl/generate_bindings.py
===================================================================
--- app/gfx/gl/generate_bindings.py (revision 72575)
+++ app/gfx/gl/generate_bindings.py (working copy)
@@ -242,6 +242,13 @@
'GLuint indx, GLint size, GLenum type, GLboolean normalized, '
'GLsizei stride, const void* ptr'],
['void', ['glViewport'], 'GLint x, GLint y, GLsizei width, GLsizei height'],
+['void', ['glGenFencesNV'], 'GLsizei n, GLuint* fences'],
+['void', ['glDeleteFencesNV'], 'GLsizei n, const GLuint* fences'],
+['void', ['glSetFenceNV'], 'GLuint fence, GLenum condition'],
+['GLboolean', ['glTestFenceNV'], 'GLuint fence'],
+['void', ['glFinishFenceNV'], 'GLuint fence'],
+['GLboolean', ['glIsFenceNV'], 'GLuint fence'],
+['void', ['glGetFenceivNV'], 'GLuint fence, GLenum pname, GLint* params'],
]
OSMESA_FUNCTIONS = [
« no previous file with comments | « no previous file | app/gfx/gl/gl_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698