summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r200
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2010-03-08 10:04:02 -0500
committerAlex Deucher <alexdeucher@gmail.com>2010-03-08 11:49:53 -0500
commitd7ad1b8b0788536f6fcd261fbe0db7a10b84ac0a (patch)
treec71b2ab3cec121a46b5c99a5fc16f0a4b304ccf9 /src/mesa/drivers/dri/r200
parentc65235f97efe30eb9444f7c8f20cb8f0cc529d19 (diff)
radeon/r200/r600: reset bos when validating buffers during blit
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r--src/mesa/drivers/dri/r200/r200_blit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_blit.c b/src/mesa/drivers/dri/r200/r200_blit.c
index b56327dad5..2c8b3aafe5 100644
--- a/src/mesa/drivers/dri/r200/r200_blit.c
+++ b/src/mesa/drivers/dri/r200/r200_blit.c
@@ -211,6 +211,9 @@ static GLboolean validate_buffers(struct r200_context *r200,
struct radeon_bo *dst_bo)
{
int ret;
+
+ radeon_cs_space_reset_bos(r200->radeon.cmdbuf.cs);
+
ret = radeon_cs_space_check_with_bo(r200->radeon.cmdbuf.cs,
src_bo, RADEON_GEM_DOMAIN_VRAM, 0);
if (ret)