diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2011-05-03 04:55:17 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2012-05-28 13:26:19 -0400 |
commit | 8e37b2cac256a8cdd2b0bcfa060d14e58fd067fa (patch) | |
tree | 9ed8ff7b559308526172b8643a179382cc0900d3 | |
parent | bff3e07a5dd468d2dbb555bbd148e9cff3b19594 (diff) |
Remove spew
-rw-r--r-- | pixman/pixman-glyph.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pixman/pixman-glyph.c b/pixman/pixman-glyph.c index 5532c38f..b4ce217d 100644 --- a/pixman/pixman-glyph.c +++ b/pixman/pixman-glyph.c @@ -421,6 +421,7 @@ pixman_composite_glyphs (pixman_op_t op, pixman_list_move_to_front (&cache->mru, &glyph->mru_link); } +#if 0 fprintf (stderr, "mask: %d %d\n", mask_width, mask_height); fprintf (stderr, "dst: %d %d, clip %d %d %d %d\n", dest_x + extents.x1, dest_y + extents.y1, @@ -428,6 +429,7 @@ pixman_composite_glyphs (pixman_op_t op, dest->common.clip_region.extents.y1, dest->common.clip_region.extents.x2, dest->common.clip_region.extents.y2); +#endif pixman_image_composite32 (op, src, mask, dest, src_x + extents.x1, src_y + extents.y1, @@ -437,5 +439,7 @@ pixman_composite_glyphs (pixman_op_t op, pixman_image_unref (mask); +#if 0 fprintf (stderr, "done\n"); +#endif } |