summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAapo Tahkola <aet@rasterburn.org>2006-04-23 07:59:40 +0000
committerAapo Tahkola <aet@rasterburn.org>2006-04-23 07:59:40 +0000
commita55842b9b310749b410e38fa3a5e1928f5f572b5 (patch)
tree6d98c4bb1bedd23fdf4cdd90047a6107301e38a1 /src
parent95cc7a6dacde330b6f30e4ef57e99c6c04387325 (diff)
disable hw locking when entering span rendering for now
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/r300/radeon_span.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/radeon_span.c b/src/mesa/drivers/dri/r300/radeon_span.c
index 1f000b9766..d77c5a3903 100644
--- a/src/mesa/drivers/dri/r300/radeon_span.c
+++ b/src/mesa/drivers/dri/r300/radeon_span.c
@@ -257,13 +257,14 @@ static void radeonSpanRenderStart( GLcontext *ctx )
r300Flush(ctx);
LOCK_HARDWARE( rmesa );
radeonWaitForIdleLocked( rmesa );
+ UNLOCK_HARDWARE( rmesa );
}
static void radeonSpanRenderFinish( GLcontext *ctx )
{
radeonContextPtr rmesa = RADEON_CONTEXT( ctx );
_swrast_flush( ctx );
- UNLOCK_HARDWARE( rmesa );
+ //UNLOCK_HARDWARE( rmesa );
}
void radeonInitSpanFuncs( GLcontext *ctx )