diff options
author | Brian Paul <[email protected]> | 2010-05-25 21:13:06 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-25 21:38:02 -0600 |
commit | a830eef8c28370dc28f6df22d831ff2f22055d48 (patch) | |
tree | 8fa275856d89c4f99436e4e26d1afe80e2b6248a /src/mesa/shader/arbprogram.h | |
parent | e00d07cff676422d6c58c93bbbe737d672efa761 (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.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 @@ -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); |