sna/gen6+: Add missing DBG argument
authorChris Wilson <chris@chris-wilson.co.uk>
Sat, 22 Feb 2014 20:17:08 +0000 (20:17 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Sun, 23 Feb 2014 07:53:07 +0000 (07:53 +0000)
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
src/sna/gen6_render.c
src/sna/gen7_render.c
src/sna/gen8_render.c

index f36bf79..6ff187c 100644 (file)
@@ -1832,7 +1832,7 @@ gen6_composite_set_target(struct sna *sna,
        BoxRec box;
        unsigned int hint;
 
-       DBG(("%s: (%d, %d)x(%d, %d), partial?=%d\n", __FUNCTION__, x, y, w, h));
+       DBG(("%s: (%d, %d)x(%d, %d), partial?=%d\n", __FUNCTION__, x, y, w, h, partial));
 
        op->dst.pixmap = get_drawable_pixmap(dst->pDrawable);
        op->dst.format = dst->format;
index a90bd15..39a95f6 100644 (file)
@@ -2111,7 +2111,7 @@ gen7_composite_set_target(struct sna *sna,
        BoxRec box;
        unsigned int hint;
 
-       DBG(("%s: (%d, %d)x(%d, %d), partial?=%d\n", __FUNCTION__, x, y, w, h));
+       DBG(("%s: (%d, %d)x(%d, %d), partial?=%d\n", __FUNCTION__, x, y, w, h, partial));
 
        op->dst.pixmap = get_drawable_pixmap(dst->pDrawable);
        op->dst.format = dst->format;
index c096db1..2a36795 100644 (file)
@@ -1862,7 +1862,7 @@ gen8_composite_set_target(struct sna *sna,
        BoxRec box;
        unsigned int hint;
 
-       DBG(("%s: (%d, %d)x(%d, %d), partial?=%d\n", __FUNCTION__, x, y, w, h));
+       DBG(("%s: (%d, %d)x(%d, %d), partial?=%d\n", __FUNCTION__, x, y, w, h, partial));
 
        op->dst.pixmap = get_drawable_pixmap(dst->pDrawable);
        op->dst.format = dst->format;