radeon: fix some regressions in texturing code.
authorDave Airlie <airlied@redhat.com>
Wed, 2 Nov 2011 14:06:44 +0000 (14:06 +0000)
committerDave Airlie <airlied@redhat.com>
Thu, 3 Nov 2011 10:10:07 +0000 (10:10 +0000)
On a piglit run vs 7.11 this fixes 23 tests.

Signed-off-by: Dave Airlie <airlied@redhat.com>
src/mesa/drivers/dri/radeon/radeon_span.c

index 8d0133174fbfaa05c641550b45725d9b36de0491..ecc3befdbfeabbb7d929a78eb5c399153ed1ad77 100644 (file)
@@ -591,10 +591,9 @@ static void radeonSpanRenderStart(struct gl_context * ctx)
 
        radeon_firevertices(rmesa);
 
-       for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++) {
+       for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++)
                if (ctx->Texture.Unit[i]._ReallyEnabled)
-                       ctx->Driver.MapTexture(ctx, ctx->Texture.Unit[i]._Current);
-       }
+                       radeonMapTexture(ctx, ctx->Texture.Unit[i]._Current);
 
        radeon_map_unmap_framebuffer(ctx, ctx->DrawBuffer, GL_TRUE);
        if (ctx->ReadBuffer != ctx->DrawBuffer)
@@ -607,10 +606,9 @@ static void radeonSpanRenderFinish(struct gl_context * ctx)
 
        _swrast_flush(ctx);
 
-       for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++) {
+       for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++)
                if (ctx->Texture.Unit[i]._ReallyEnabled)
-                       ctx->Driver.UnmapTexture(ctx, ctx->Texture.Unit[i]._Current);
-       }
+                       radeonUnmapTexture(ctx, ctx->Texture.Unit[i]._Current);
 
        radeon_map_unmap_framebuffer(ctx, ctx->DrawBuffer, GL_FALSE);
        if (ctx->ReadBuffer != ctx->DrawBuffer)