diff options
author | Fredrik Höglund <[email protected]> | 2015-03-02 18:49:06 +0100 |
---|---|---|
committer | Fredrik Höglund <[email protected]> | 2015-05-08 15:31:03 +0200 |
commit | dc2eaaf912c342ee85c88dcc467a3c59875af874 (patch) | |
tree | e767a67293a931fab3b14abcb4d4fde6c99fec9b /src/mesa/main/varray.h | |
parent | ade0179f77fff7d2d88d7dd9e23990051815a1dc (diff) |
mesa: Implement VertexArrayAttribBinding
Reviewed-by: Laura Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index d2234391edd..b9544dc7cd7 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -334,6 +334,10 @@ extern void GLAPIENTRY _mesa_VertexAttribBinding(GLuint attribIndex, GLuint bindingIndex); extern void GLAPIENTRY +_mesa_VertexArrayAttribBinding(GLuint vaobj, GLuint attribIndex, + GLuint bindingIndex); + +extern void GLAPIENTRY _mesa_VertexBindingDivisor(GLuint bindingIndex, GLuint divisor); |