R6xx/r7xx: fix locking for clear
authorAlex Deucher <alexdeucher@gmail.com>
Tue, 30 Jun 2009 22:40:48 +0000 (18:40 -0400)
committerAlex Deucher <alexdeucher@gmail.com>
Tue, 30 Jun 2009 22:40:48 +0000 (18:40 -0400)
this allows redbook hello to render correctly mostly.

src/mesa/drivers/dri/r600/r700_clear.c
src/mesa/drivers/dri/r600/r700_render.c

index b04441da28194ef5b072dc58c534e81c0179b062..76967956761fbefc7e2babea26b7c047f64d1954 100644 (file)
@@ -32,6 +32,7 @@
 #include "main/mtypes.h"
 #include "main/enums.h"
 
+#include "radeon_lock.h"
 #include "r600_context.h"
 
 #include "r700_shaderinst.h"
@@ -68,14 +69,12 @@ void r700Clear(GLcontext * ctx, GLbitfield mask)
         return;
     }
 
-#if 0
        if (!context->radeon.radeonScreen->driScreen->dri2.enabled) {
                LOCK_HARDWARE(&context->radeon);
                UNLOCK_HARDWARE(&context->radeon);
                if (dPriv->numClipRects == 0)
                        return;
        }
-#endif
 
        R600_NEWPRIM(context);
 
index b496543e1d88a1197573643a061539931512bc77..e46b21c85c15b621d95efce9fd59d7d41384f678 100644 (file)
@@ -44,7 +44,6 @@
 #include "tnl/t_vertex.h"
 #include "tnl/t_pipeline.h"
 
-#include "radeon_lock.h"
 #include "r600_context.h"
 #include "r600_cmdbuf.h"
 
@@ -296,9 +295,6 @@ static GLboolean r700RunRender(GLcontext * ctx,
     /* flush vtx */
     //r700SyncSurf(context); /*  */
 
-    LOCK_HARDWARE( &context->radeon );
-    UNLOCK_HARDWARE( &context->radeon );
-
     r700SendContextStates(context);
     r700SendViewportState(context, 0);
     r700SendRenderTargetState(context, 0);