diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2011-05-31 13:33:54 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-06-02 17:55:48 -0600 |
commit | 09201cc7a0c4c50871bb8aa5d00ac70aa4e9e670 (patch) | |
tree | 909a5789f5fb355f1b4dfd569d0f93b66ff7ca89 /src/mesa/main/vtxfmt.c | |
parent | 0dae94610e0b70b353fd0b018833bb7c8d013abb (diff) |
mesa: add implementation of glDrawElementsInstancedBaseVertex
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/vtxfmt.c')
-rw-r--r-- | src/mesa/main/vtxfmt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/vtxfmt.c b/src/mesa/main/vtxfmt.c index 692ce080c9f..d0941477d61 100644 --- a/src/mesa/main/vtxfmt.c +++ b/src/mesa/main/vtxfmt.c @@ -106,6 +106,7 @@ install_vtxfmt( struct _glapi_table *tab, const GLvertexformat *vfmt ) SET_MultiDrawElementsBaseVertex(tab, vfmt->MultiDrawElementsBaseVertex); SET_DrawArraysInstancedARB(tab, vfmt->DrawArraysInstanced); SET_DrawElementsInstancedARB(tab, vfmt->DrawElementsInstanced); + SET_DrawElementsInstancedBaseVertex(tab, vfmt->DrawElementsInstancedBaseVertex); /* GL_NV_vertex_program */ SET_VertexAttrib1fNV(tab, vfmt->VertexAttrib1fNV); |