diff options
author | Brian Paul <[email protected]> | 2010-04-04 18:21:16 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-04 19:05:38 -0600 |
commit | 3b7ac45162412a79c3cd4d4dbc16bd54db597608 (patch) | |
tree | 075f8a31dccf2c079ede72cf6fa80b9cb46cbd5a /src/mesa/main/dd.h | |
parent | cf3193ad1cd75b847c5d626def701a4bb012d080 (diff) |
mesa: implement core Mesa support for GL_ARB_draw_instanced
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 7c02faaa535..4679be72f76 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1186,6 +1186,11 @@ typedef struct { const GLvoid **indices, GLsizei primcount, const GLint *basevertex); + void (GLAPIENTRYP DrawArraysInstanced)(GLenum mode, GLint first, + GLsizei count, GLsizei primcount); + void (GLAPIENTRYP DrawElementsInstanced)(GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices, + GLsizei primcount); /*@}*/ /** |