diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-10-05 10:17:45 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-10-05 10:17:45 +0100 |
commit | 07a46333477898cfc2020ba5da9a6a7a866b21a7 (patch) | |
tree | 1f929a3989596edf97ea30a2a39dcfd65ea537de /src/sna/fb | |
parent | 3ad3a2d839f8e2f5b02f883e2b4131d4c0901fb0 (diff) |
sna: Refactor the fallback CopyArea to use the common region computation
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/fb')
-rw-r--r-- | src/sna/fb/fbblt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sna/fb/fbblt.c b/src/sna/fb/fbblt.c index 62ed2a14..d4d20b68 100644 --- a/src/sna/fb/fbblt.c +++ b/src/sna/fb/fbblt.c @@ -270,8 +270,8 @@ fbBlt(FbBits *srcLine, FbStride srcStride, int srcX, int alu, FbBits pm, int bpp, Bool reverse, Bool upsidedown) { - DBG(("%s %dx%d, alu=%d, pm=%d, bpp=%d\n", - __FUNCTION__, width, height, alu, pm, bpp)); + DBG(("%s %dx%d, alu=%d, pm=%d, bpp=%d (reverse=%d, upsidedown=%d)\n", + __FUNCTION__, width, height, alu, pm, bpp, reverse, upsidedown)); if (alu == GXcopy && pm == FB_ALLONES && ((srcX|dstX|width) & 7) == 0) { CARD8 *s = (CARD8 *) srcLine; |