From: Vinson Lee Date: Tue, 17 Nov 2009 19:37:48 +0000 (-0800) Subject: progs/glsl: Change tangentAttrib from GLuint to GLint in bump.c. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25fd168f03162d4cb25b50ea9bd5ff56283f6854;p=mesa.git progs/glsl: Change tangentAttrib from GLuint to GLint in bump.c. tangentAtrrib is assigned the result of glGetAttribLocation. The assertion 'assert(tangentAtrrib >= 0)' would be a no-op if tangentAttrib is a GLuint. (cherry picked from commit b8dcb79c53796f37234bd2b0f5e2845f817fc218) --- diff --git a/progs/glsl/bump.c b/progs/glsl/bump.c index 87669aec736..50a0900f1c7 100644 --- a/progs/glsl/bump.c +++ b/progs/glsl/bump.c @@ -36,7 +36,7 @@ static GLint win = 0; static GLfloat xRot = 20.0f, yRot = 0.0f, zRot = 0.0f; -static GLuint tangentAttrib; +static GLint tangentAttrib; static GLboolean Anim = GL_FALSE;