summaryrefslogtreecommitdiff
path: root/src/r600_exa.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2009-12-17 14:30:23 +1000
committerDave Airlie <airlied@redhat.com>2009-12-21 08:06:21 +1000
commit4b05c47ac657f9a93d76221269761ed64c81f716 (patch)
treefd2f017a2234011cca93cc9d2cbbe216991ff909 /src/r600_exa.c
parent1d620800bd79290967fa487decf798e318c45f25 (diff)
radeon: use new libdrm api
Diffstat (limited to 'src/r600_exa.c')
-rw-r--r--src/r600_exa.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/r600_exa.c b/src/r600_exa.c
index 634e6cac..6a132bb5 100644
--- a/src/r600_exa.c
+++ b/src/r600_exa.c
@@ -2027,7 +2027,7 @@ R600UploadToScreenCS(PixmapPtr pDst, int x, int y, int w, int h,
driver_priv = exaGetPixmapDriverPrivate(pDst);
/* If we know the BO won't be busy, don't bother */
- if (driver_priv->bo->cref == 1 &&
+ if (!radeon_bo_is_referenced_by_cs(driver_priv->bo, info->cs) &&
!radeon_bo_is_busy(driver_priv->bo, &dst_domain))
return FALSE;
@@ -2097,11 +2097,8 @@ R600DownloadFromScreenCS(PixmapPtr pSrc, int x, int y, int w,
driver_priv = exaGetPixmapDriverPrivate(pSrc);
/* If we know the BO won't end up in VRAM anyway, don't bother */
- if (driver_priv->bo->cref > 1) {
- src_domain = driver_priv->bo->space_accounted & 0xffff;
- if (!src_domain)
- src_domain = driver_priv->bo->space_accounted >> 16;
-
+ if (radeon_bo_is_referenced_by_cs(driver_priv->bo, info->cs)) {
+ src_domain = radeon_bo_get_src_domain(driver_priv->bo);
if ((src_domain & (RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM)) ==
(RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM))
src_domain = 0;