Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
|
PhistucK
2011/04/07 07:08:28
Same here.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file is auto-generated. DO NOT EDIT! | 5 // This file is auto-generated. DO NOT EDIT! |
| 6 | 6 |
| 7 #include <GLES2/gl2.h> | 7 #include <GLES2/gl2.h> |
| 8 #include "ppapi/lib/gl/gles2/gl2ext_ppapi.h" | 8 #include "ppapi/lib/gl/gles2/gl2ext_ppapi.h" |
| 9 | 9 |
| 10 void GL_APIENTRY glActiveTexture(GLenum texture) { | 10 void GL_APIENTRY glActiveTexture(GLenum texture) { |
| 11 glGetInterfacePPAPI()->ActiveTexture(glGetCurrentContextPPAPI(), texture); | 11 glGetInterfacePPAPI()->ActiveTexture(glGetCurrentContextPPAPI(), texture); |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 744 const void* ptr) { | 744 const void* ptr) { |
| 745 glGetInterfacePPAPI()->VertexAttribPointer( | 745 glGetInterfacePPAPI()->VertexAttribPointer( |
| 746 glGetCurrentContextPPAPI(), indx, size, type, normalized, stride, ptr); | 746 glGetCurrentContextPPAPI(), indx, size, type, normalized, stride, ptr); |
| 747 } | 747 } |
| 748 | 748 |
| 749 void GL_APIENTRY glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { | 749 void GL_APIENTRY glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { |
| 750 glGetInterfacePPAPI()->Viewport( | 750 glGetInterfacePPAPI()->Viewport( |
| 751 glGetCurrentContextPPAPI(), x, y, width, height); | 751 glGetCurrentContextPPAPI(), x, y, width, height); |
| 752 } | 752 } |
| 753 | 753 |
| OLD | NEW |