diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-06-15 15:29:59 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-06-15 15:41:08 +0100 |
commit | d1713941e9db3e7a6d83466be1b253978fb4bf01 (patch) | |
tree | e127a6a933520040185fabc992c205d3e1657594 /src/sna/sna_composite.c | |
parent | 2b23605efba009fb340ec10b37d54caae159b9b1 (diff) |
sna: Tweaks for DBG missing glyphs through fallbacks
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/sna_composite.c')
-rw-r--r-- | src/sna/sna_composite.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sna/sna_composite.c b/src/sna/sna_composite.c index 97fe70e6..ab1cd39a 100644 --- a/src/sna/sna_composite.c +++ b/src/sna/sna_composite.c @@ -544,12 +544,14 @@ fallback: flags = MOVE_WRITE | MOVE_INPLACE_HINT; else flags = MOVE_WRITE | MOVE_READ; + DBG(("%s: fallback -- move dst to cpu\n", __FUNCTION__)); if (!sna_drawable_move_region_to_cpu(dst->pDrawable, ®ion, flags)) goto out; if (dst->alphaMap && !sna_drawable_move_to_cpu(dst->alphaMap->pDrawable, flags)) goto out; if (src->pDrawable) { + DBG(("%s: fallback -- move src to cpu\n", __FUNCTION__)); if (!sna_drawable_move_to_cpu(src->pDrawable, MOVE_READ)) goto out; @@ -560,6 +562,7 @@ fallback: goto out; } if (mask && mask->pDrawable) { + DBG(("%s: fallback -- move mask to cpu\n", __FUNCTION__)); if (!sna_drawable_move_to_cpu(mask->pDrawable, MOVE_READ)) goto out; |