From 25efd558a3d8c5b4d6e53c3bf104eddcf064f0b2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 28 Oct 2010 21:17:41 -0600 Subject: [PATCH] mesa: remove 'normalized' parameter from _mesa_VertexAttribIPointer() --- src/mesa/main/varray.c | 3 +-- src/mesa/main/varray.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index 56749355cdf..d02c77c101c 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 a5fa33fa00e..fb96478cfc3 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); -- 2.30.2