summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2009-09-26 06:04:51 +1000
committerDave Airlie <airlied@linux.ie>2009-09-26 06:04:51 +1000
commitff18595eace42ddfc931f4f948cb5adf59ebcf52 (patch)
tree3e61f7dd2b5c38a54f17a197581cda7c8d978910
parent718a611f3cc7f5eea95cd73a9dcc7913c922fcbc (diff)
r600/xv: fix dst bo write domain
-rw-r--r--src/r600_textured_videofuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/r600_textured_videofuncs.c b/src/r600_textured_videofuncs.c
index c9df284..1798091 100644
--- a/src/r600_textured_videofuncs.c
+++ b/src/r600_textured_videofuncs.c
@@ -234,7 +234,7 @@ R600DisplayTexturedVideo(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv)
radeon_cs_space_add_persistent_bo(info->cs, accel_state->src_bo[0],
RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM, 0);
radeon_cs_space_add_persistent_bo(info->cs, accel_state->dst_bo,
- RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM, 0);
+ 0, RADEON_GEM_DOMAIN_VRAM, 0);
if (radeon_cs_space_check(info->cs))
return;
} else