diff options
author | Fredrik Höglund <[email protected]> | 2015-03-02 19:07:52 +0100 |
---|---|---|
committer | Fredrik Höglund <[email protected]> | 2015-05-08 15:31:04 +0200 |
commit | 97b268f1de6efc1fe15fbb63b9f36da2c6d858bb (patch) | |
tree | d79f341aa73f333eb62ff0d949e2889df717d7c0 /src/mesa/main/varray.h | |
parent | 2ad0268871a4a35c3a9cd77969ef0563a887299f (diff) |
mesa: Implement GetVertexArrayIndexed[64]iv
v2: Fix the name of the entry point in the error messages.
Reviewed-by: Laura Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 295c54b31a8..5583ed5a1d1 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -212,6 +212,16 @@ extern void GLAPIENTRY _mesa_GetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid **pointer); +void GLAPIENTRY +_mesa_GetVertexArrayIndexediv(GLuint vaobj, GLuint index, + GLenum pname, GLint *param); + + +void GLAPIENTRY +_mesa_GetVertexArrayIndexed64iv(GLuint vaobj, GLuint index, + GLenum pname, GLint64 *param); + + extern void GLAPIENTRY _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer); |