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

Unified Diff: ui/gl/generate_bindings.py

Issue 169603002: Add initial support for NV_path_rendering extension to gpu command buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 8 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
« ppapi/lib/gl/gles2/gles2.c ('K') | « ppapi/shared_impl/ppb_opengles2_shared.cc ('k') | no next file » | 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 4778595a07fdf46c6f44eaef9d15806f82eb9f57..ef70af915d7e430d9254e2b86808d74cbdbc582f 100755
--- a/ui/gl/generate_bindings.py
+++ b/ui/gl/generate_bindings.py
@@ -832,6 +832,15 @@ GL_FUNCTIONS = [
'gl_versions': ['es1', 'es2'] }],
'arguments': 'GLenum target, GLsizei numAttachments, '
'const GLenum* attachments' },
+{ 'return_type': 'void',
+ 'names': ['glMatrixMode'],
+ 'arguments': 'GLenum mode' },
piman 2014/04/11 22:19:27 please tag on gl_versions 'gl2', 'gl3', 'gl4' (sam
Kimmo Kinnunen 2014/04/15 16:16:58 Done. Tagged as 'gl4'.
+{ 'return_type': 'void',
+ 'names': ['glLoadMatrixf'],
+ 'arguments': 'const GLfloat* m' },
+{ 'return_type': 'void',
+ 'names': ['glLoadIdentity'],
+ 'arguments': 'void' },
]
OSMESA_FUNCTIONS = [
« ppapi/lib/gl/gles2/gles2.c ('K') | « ppapi/shared_impl/ppb_opengles2_shared.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698