diff options
author | Brian Paul <brianp@vmware.com> | 2010-10-21 19:03:38 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-10-21 19:03:38 -0600 |
commit | a80afbd99e879d36fdb4b099fd49c1f75edc8886 (patch) | |
tree | 4029ecbcf6d0fa3ab757cd6c1431cbe4f28afef1 | |
parent | 16333e1fc489a414233bc485f1230b847d11b020 (diff) |
mesa: driver hook for primitive restart
-rw-r--r-- | src/mesa/main/dd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index c9f0facdaf..5e006e0ad3 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1086,6 +1086,7 @@ typedef struct { void (GLAPIENTRYP CallLists)( GLsizei, GLenum, const GLvoid * ); void (GLAPIENTRYP Begin)( GLenum ); void (GLAPIENTRYP End)( void ); + void (GLAPIENTRYP PrimitiveRestartNV)( void ); /* GL_NV_vertex_program */ void (GLAPIENTRYP VertexAttrib1fNV)( GLuint index, GLfloat x ); void (GLAPIENTRYP VertexAttrib1fvNV)( GLuint index, const GLfloat *v ); |