summaryrefslogtreecommitdiff
path: root/src/mesa/shader/arbprogram.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-05-25 21:13:06 -0600
committerBrian Paul <brianp@vmware.com>2010-05-25 21:38:02 -0600
commita830eef8c28370dc28f6df22d831ff2f22055d48 (patch)
tree8fa275856d89c4f99436e4e26d1afe80e2b6248a /src/mesa/shader/arbprogram.h
parente00d07cff676422d6c58c93bbbe737d672efa761 (diff)
mesa: added _mesa_GetVertexAttribIiv / AttribIuiv()
Refactor the code for all the glGetVertexAttrib() functions.
Diffstat (limited to 'src/mesa/shader/arbprogram.h')
-rw-r--r--src/mesa/shader/arbprogram.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/shader/arbprogram.h b/src/mesa/shader/arbprogram.h
index 6fe76267be..d7f553c08e 100644
--- a/src/mesa/shader/arbprogram.h
+++ b/src/mesa/shader/arbprogram.h
@@ -58,6 +58,14 @@ _mesa_GetVertexAttribivARB(GLuint index, GLenum pname, GLint *params);
extern void GLAPIENTRY
+_mesa_GetVertexAttribIiv(GLuint index, GLenum pname, GLint *params);
+
+
+extern void GLAPIENTRY
+_mesa_GetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params);
+
+
+extern void GLAPIENTRY
_mesa_GetVertexAttribPointervARB(GLuint index, GLenum pname, GLvoid **pointer);