summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/r600_hw_context.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2014-03-16 19:59:50 +0100
committerMarek Olšák <[email protected]>2014-03-20 18:41:18 +0100
commit2c703ee8ad8a396e2daffa6fd005009d9ea987d6 (patch)
tree67046d674fde8f7697bc4a8631bbef5e91a39c96 /src/gallium/drivers/r600/r600_hw_context.c
parente914d0052f4f195681b1a610b41c148bf351e336 (diff)
r600g: don't flush the gfx IB explicitly before doing DMA
It's flushed by calling r600_context_bo_reloc. Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_hw_context.c')
-rw-r--r--src/gallium/drivers/r600/r600_hw_context.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_hw_context.c b/src/gallium/drivers/r600/r600_hw_context.c
index 75723be598f..eb5500e29e5 100644
--- a/src/gallium/drivers/r600/r600_hw_context.c
+++ b/src/gallium/drivers/r600/r600_hw_context.c
@@ -458,9 +458,6 @@ void r600_dma_copy(struct r600_context *rctx,
util_range_add(&rdst->valid_buffer_range, dst_offset,
dst_offset + size);
- /* make sure that the dma ring is only one active */
- rctx->b.rings.gfx.flush(rctx, RADEON_FLUSH_ASYNC);
-
size >>= 2;
shift = 2;
ncopy = (size / 0xffff) + !!(size % 0xffff);