diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-11-30 15:57:42 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-11-30 16:56:48 +0000 |
commit | 85fe41126e83b35954dc2066eb103e0555e207a4 (patch) | |
tree | 00b1c07da93bb3fed951a782924a8a864a6832cf | |
parent | 2d434eed09936328a52cb942450a95aedc3eac63 (diff) |
uxa: Remove cache flush for copy
As the copy uses the 2D blitter, it uses the render cache so the source
should not require flushing if it has previously been used as a
destination.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/i830_uxa.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/i830_uxa.c b/src/i830_uxa.c index 5f3d5059..d53af043 100644 --- a/src/i830_uxa.c +++ b/src/i830_uxa.c @@ -310,9 +310,6 @@ i830_uxa_prepare_copy(PixmapPtr source, PixmapPtr dest, int xdir, if (!intel_check_pitch_2d(dest)) return FALSE; - if(i830_uxa_pixmap_is_dirty(source)) - intel_batch_pipelined_flush(scrn); - intel->render_source = source; intel->BR[13] = I830CopyROP[alu] << 16; |