diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-08-25 18:13:14 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-08-25 18:13:14 -0400 |
commit | 599adfc1f5e6d708be7ad30f4871de3046775727 (patch) | |
tree | d16f1347436d4f7250f878c5499e82951fea02de /src/r600_exa.c | |
parent | 2e83cca8d7efaf1a6836cfb9ea5893fd9d70175f (diff) |
r6xx/r7xx: fix flipped domains
Diffstat (limited to 'src/r600_exa.c')
-rw-r--r-- | src/r600_exa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/r600_exa.c b/src/r600_exa.c index 4d09d6e7..1d7802a9 100644 --- a/src/r600_exa.c +++ b/src/r600_exa.c @@ -658,7 +658,7 @@ R600DoCopy(ScrnInfoPtr pScrn) /* sync dst surface */ cp_set_surface_sync(pScrn, accel_state->ib, (CB_ACTION_ENA_bit | CB0_DEST_BASE_ENA_bit), accel_state->dst_size, accel_state->dst_mc_addr, - accel_state->dst_bo, 0, RADEON_GEM_DOMAIN_VRAM); + accel_state->dst_bo, RADEON_GEM_DOMAIN_VRAM, 0); R600CPFlushIndirect(pScrn, accel_state->ib); } |