diff options
author | Brian Paul <[email protected]> | 2010-05-25 21:12:24 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-25 21:18:33 -0600 |
commit | e00d07cff676422d6c58c93bbbe737d672efa761 (patch) | |
tree | a01fd91687ec08e8cb5f2d43aeaf072baf3a3995 /src/mesa/main/varray.h | |
parent | e793a24d7ca6ca9b50a716563c8c2abe15c9d1b5 (diff) |
mesa: added _mesa_VertexAttribIPointer()
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index b7c3e11674e..66122b76308 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -116,6 +116,11 @@ _mesa_VertexAttribPointerARB(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); +void GLAPIENTRY +_mesa_VertexAttribIPointer(GLuint index, GLint size, GLenum type, + GLboolean normalized, + GLsizei stride, const GLvoid *ptr); + extern void GLAPIENTRY _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer); |