From: Brian Paul Date: Fri, 29 Oct 2010 03:17:41 +0000 (-0600) Subject: mesa: remove 'normalized' parameter from _mesa_VertexAttribIPointer() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25efd558a3d8c5b4d6e53c3bf104eddcf064f0b2;p=mesa.git mesa: remove 'normalized' parameter from _mesa_VertexAttribIPointer() --- 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);