diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-01-29 17:24:24 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-01-29 17:26:10 +0000 |
commit | 9383c5efe9ace34970abddc5e3c84c32505b537f (patch) | |
tree | a6fa617c9f7d16320ca8d810418b0cd01bee5c71 | |
parent | b02a1ea5573b6f0b58a037dd4788c04c296f7ff3 (diff) |
sna/gen3+: Fix a DBG for composite_boxes()
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/sna/gen3_render.c | 4 | ||||
-rw-r--r-- | src/sna/gen4_render.c | 4 | ||||
-rw-r--r-- | src/sna/gen5_render.c | 4 | ||||
-rw-r--r-- | src/sna/gen6_render.c | 4 | ||||
-rw-r--r-- | src/sna/gen7_render.c | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/sna/gen3_render.c b/src/sna/gen3_render.c index 3eb29668..06c4e784 100644 --- a/src/sna/gen3_render.c +++ b/src/sna/gen3_render.c @@ -2097,7 +2097,7 @@ gen3_render_composite_boxes(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); do { int nbox_this_time; @@ -2120,7 +2120,7 @@ gen3_render_composite_boxes__thread(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); sna_vertex_lock(&sna->render); do { diff --git a/src/sna/gen4_render.c b/src/sna/gen4_render.c index 249d6261..829f4e9a 100644 --- a/src/sna/gen4_render.c +++ b/src/sna/gen4_render.c @@ -1150,7 +1150,7 @@ gen4_render_composite_boxes(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); do { int nbox_this_time; @@ -1174,7 +1174,7 @@ gen4_render_composite_boxes__thread(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); sna_vertex_lock(&sna->render); do { diff --git a/src/sna/gen5_render.c b/src/sna/gen5_render.c index e4649c4b..07e95712 100644 --- a/src/sna/gen5_render.c +++ b/src/sna/gen5_render.c @@ -1136,7 +1136,7 @@ gen5_render_composite_boxes(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); do { int nbox_this_time; @@ -1160,7 +1160,7 @@ gen5_render_composite_boxes__thread(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); sna_vertex_lock(&sna->render); do { diff --git a/src/sna/gen6_render.c b/src/sna/gen6_render.c index bb35e10f..a9d81114 100644 --- a/src/sna/gen6_render.c +++ b/src/sna/gen6_render.c @@ -1377,7 +1377,7 @@ gen6_render_composite_boxes(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); do { int nbox_this_time; @@ -1401,7 +1401,7 @@ gen6_render_composite_boxes__thread(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); sna_vertex_lock(&sna->render); do { diff --git a/src/sna/gen7_render.c b/src/sna/gen7_render.c index 0f39fae0..dc704dde 100644 --- a/src/sna/gen7_render.c +++ b/src/sna/gen7_render.c @@ -1518,7 +1518,7 @@ gen7_render_composite_boxes(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); do { int nbox_this_time; @@ -1542,7 +1542,7 @@ gen7_render_composite_boxes__thread(struct sna *sna, const struct sna_composite_op *op, const BoxRec *box, int nbox) { - DBG(("%s: nbox=%d\n", nbox)); + DBG(("%s: nbox=%d\n", __FUNCTION__, nbox)); sna_vertex_lock(&sna->render); do { |