Chromium Code Reviews| 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).
|