summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/varray.c3
-rw-r--r--src/mesa/main/varray.h1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c
index 56749355cd..d02c77c101 100644
--- a/src/mesa/main/varray.c
+++ b/src/mesa/main/varray.c
@@ -719,13 +719,12 @@ _mesa_VertexAttribPointerARB(GLuint index, GLint size, GLenum type,
*/
void GLAPIENTRY
_mesa_VertexAttribIPointer(GLuint index, GLint size, GLenum type,
- GLboolean normalized,
GLsizei stride, const GLvoid *ptr)
{
/* NOTE: until we have integer-valued vertex attributes, just
* route this through the regular glVertexAttribPointer() function.
*/
- _mesa_VertexAttribPointerARB(index, size, type, normalized, stride, ptr);
+ _mesa_VertexAttribPointerARB(index, size, type, GL_FALSE, stride, ptr);
}
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h
index a5fa33fa00..fb96478cfc 100644
--- a/src/mesa/main/varray.h
+++ b/src/mesa/main/varray.h
@@ -118,7 +118,6 @@ _mesa_VertexAttribPointerARB(GLuint index, GLint size, GLenum type,
void GLAPIENTRY
_mesa_VertexAttribIPointer(GLuint index, GLint size, GLenum type,
- GLboolean normalized,
GLsizei stride, const GLvoid *ptr);