summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/varray.h
diff options
context:
space:
mode:
authorFredrik Höglund <fredrik@kde.org>2015-03-02 19:07:52 +0100
committerFredrik Höglund <fredrik@kde.org>2015-05-08 15:31:04 +0200
commit97b268f1de6efc1fe15fbb63b9f36da2c6d858bb (patch)
treed79f341aa73f333eb62ff0d949e2889df717d7c0 /src/mesa/main/varray.h
parent2ad0268871a4a35c3a9cd77969ef0563a887299f (diff)
downloadexternal_mesa3d-97b268f1de6efc1fe15fbb63b9f36da2c6d858bb.zip
external_mesa3d-97b268f1de6efc1fe15fbb63b9f36da2c6d858bb.tar.gz
external_mesa3d-97b268f1de6efc1fe15fbb63b9f36da2c6d858bb.tar.bz2
mesa: Implement GetVertexArrayIndexed[64]iv
v2: Fix the name of the entry point in the error messages. Reviewed-by: Laura Ekstrand <laura@jlekstrand.net>
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r--src/mesa/main/varray.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h
index 295c54b..5583ed5 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);