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

Unified Diff: ppapi/lib/gl/gles2/gles2.c

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
Index: ppapi/lib/gl/gles2/gles2.c
diff --git a/ppapi/lib/gl/gles2/gles2.c b/ppapi/lib/gl/gles2/gles2.c
index 60922cd722cfc4335f0e8882297ef2b76c5bed8c..63ececca38cfc969d6c8287de9959d6c81b9ef1d 100644
--- a/ppapi/lib/gl/gles2/gles2.c
+++ b/ppapi/lib/gl/gles2/gles2.c
@@ -1062,3 +1062,7 @@ void GL_APIENTRY glDrawBuffersEXT(GLsizei count, const GLenum* bufs) {
if (ext)
ext->DrawBuffersEXT(glGetCurrentContextPPAPI(), count, bufs);
}
+
+void GL_APIENTRY glLoadIdentity() {
+ glGetInterfacePPAPI()->LoadIdentity(glGetCurrentContextPPAPI());
+}
vmiura 2014/04/11 21:54:48 ... also here? void glMatrixMode(GLenum mode) vo
Kimmo Kinnunen 2014/04/15 16:16:58 Done (removed).

Powered by Google App Engine
This is Rietveld 408576698