From a830eef8c28370dc28f6df22d831ff2f22055d48 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 25 May 2010 21:13:06 -0600 Subject: mesa: added _mesa_GetVertexAttribIiv / AttribIuiv() Refactor the code for all the glGetVertexAttrib() functions. --- src/mesa/shader/arbprogram.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/mesa/shader/arbprogram.h') diff --git a/src/mesa/shader/arbprogram.h b/src/mesa/shader/arbprogram.h index 6fe76267beb..d7f553c08ec 100644 --- a/src/mesa/shader/arbprogram.h +++ b/src/mesa/shader/arbprogram.h @@ -57,6 +57,14 @@ extern void GLAPIENTRY _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); -- cgit v1.2.3