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

Unified Diff: gpu/GLES2/gl2extchromium.h

Issue 11693007: Linux: use generated shim headers for system mesa. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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: gpu/GLES2/gl2extchromium.h
diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
index 0175740c87fc239159dff00fcd0ecb47036127fd..f24fedbdfaa386eb2037c121eaa6065a74baf344 100644
--- a/gpu/GLES2/gl2extchromium.h
+++ b/gpu/GLES2/gl2extchromium.h
@@ -297,6 +297,34 @@ typedef void (
#endif
#endif /* GL_CHROMIUM_texture_compression_dxt3 */
+/* GL_ANGLE_instanced_arrays */
+#ifndef GL_ANGLE_instanced_arrays
+#define GL_ANGLE_instanced_arrays 1
+#ifdef GL_GLEXT_PROTOTYPES
+GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE(
+ GLenum mode, GLint first, GLsizei count, GLsizei primcount);
+#endif
+typedef void (
+ GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (
+ GLenum mode, GLint first, GLsizei count, GLsizei primcount);
+#ifdef GL_GLEXT_PROTOTYPES
+GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE(
+ GLenum mode, GLsizei count, GLenum type, const void* indices,
+ GLsizei primcount);
+#endif
+typedef void (
+ GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (
+ GLenum mode, GLsizei count, GLenum type, const void* indices,
+ GLsizei primcount);
+#ifdef GL_GLEXT_PROTOTYPES
+GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE(
+ GLuint index, GLuint divisor);
+#endif
+typedef void (
+ GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (
+ GLuint index, GLuint divisor);
+#endif /* GL_ANGLE_instanced_arrays */
+
/* GL_CHROMIUM_texture_compression_dxt5 */
#ifndef GL_CHROMIUM_texture_compression_dxt5
#define GL_CHROMIUM_texture_compression_dxt5 1

Powered by Google App Engine
This is Rietveld 408576698