diff options
author | Eric Anholt <[email protected]> | 2009-08-27 10:09:24 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-09-08 15:12:20 -0700 |
commit | 92d7ed8a20d4a018ce5324e6537ae7b478b9e5bf (patch) | |
tree | db04f9d7c60b1cd174c93fbe112f00058c85e092 /src/mesa/main/dd.h | |
parent | ec9e7295800aff0f04815de736127101f770033f (diff) |
mesa: Add support for ARB_draw_elements_base_vertex.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 4a700b5cb4d..ce5e1586266 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1172,7 +1172,22 @@ typedef struct { GLenum type, const GLvoid **indices, GLsizei primcount); - /*@}*/ + void (GLAPIENTRYP DrawElementsBaseVertex)( GLenum mode, GLsizei count, + GLenum type, + const GLvoid *indices, + GLint basevertex ); + void (GLAPIENTRYP DrawRangeElementsBaseVertex)( GLenum mode, GLuint start, + GLuint end, GLsizei count, + GLenum type, + const GLvoid *indices, + GLint basevertex); + void (GLAPIENTRYP MultiDrawElementsBaseVertex)( GLenum mode, + const GLsizei *count, + GLenum type, + const GLvoid **indices, + GLsizei primcount, + const GLint *basevertex); + /*@}*/ /** * \name Eval |