diff options
author | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
commit | ffec105109f5b16bfe8282bd477d4aa32b550015 (patch) | |
tree | cb7680c14b8d0630b3075745aa9ec07889743643 /src/mesa/drivers/dri/savage/savagerender.c | |
parent | dcf4c17fb1624af47181c63af4c3ad29f919c17a (diff) |
fix problems found with gcc 2.96 (bug 4934)
Diffstat (limited to 'src/mesa/drivers/dri/savage/savagerender.c')
-rw-r--r-- | src/mesa/drivers/dri/savage/savagerender.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/savage/savagerender.c b/src/mesa/drivers/dri/savage/savagerender.c index 9eda9a591e0..22e3f133962 100644 --- a/src/mesa/drivers/dri/savage/savagerender.c +++ b/src/mesa/drivers/dri/savage/savagerender.c @@ -246,11 +246,6 @@ static GLboolean run_texnorm_stage( GLcontext *ctx, return GL_TRUE; for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) { - if (!ctx->Texture.Unit[i]._ReallyEnabled || - VB->TexCoordPtr[i]->size == 4) - /* Never try to normalize homogenous tex coords! */ - continue; - GLuint reallyEnabled = ctx->Texture.Unit[i]._ReallyEnabled; struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current; GLboolean normalizeS = (texObj->WrapS == GL_REPEAT); @@ -261,6 +256,11 @@ static GLboolean run_texnorm_stage( GLcontext *ctx, GLfloat (*out)[4] = store->texcoord[i].data; GLint j; + if (!ctx->Texture.Unit[i]._ReallyEnabled || + VB->TexCoordPtr[i]->size == 4) + /* Never try to normalize homogenous tex coords! */ + continue; + if (normalizeS && normalizeT) { /* take first texcoords as rough estimate of mean value */ GLfloat correctionS = -floor(in[0]+0.5); |