[gimp] app: Remove COWSHOW debug output
- From: Martin Nordholts <martinn src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: Remove COWSHOW debug output
- Date: Mon, 29 Aug 2011 00:51:11 +0000 (UTC)
commit 8e7484942a2b5f953ca37222819071c8c433fd7c
Author: Martin Nordholts <martinn src gnome org>
Date: Mon Aug 29 02:50:04 2011 +0200
app: Remove COWSHOW debug output
It's 12 years old and will become even more obsolete when we port GIMP
to GEGL.
app/paint-funcs/paint-funcs.c | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
---
diff --git a/app/paint-funcs/paint-funcs.c b/app/paint-funcs/paint-funcs.c
index c8322cc..5c587ac 100644
--- a/app/paint-funcs/paint-funcs.c
+++ b/app/paint-funcs/paint-funcs.c
@@ -1967,9 +1967,6 @@ copy_region (PixelRegion *src,
{
gpointer pr;
-#ifdef COWSHOW
- fputc ('[',stderr);
-#endif
for (pr = pixel_regions_register (2, src, dest);
pr != NULL;
pr = pixel_regions_process (pr))
@@ -1983,9 +1980,6 @@ copy_region (PixelRegion *src,
src->h == tile_eheight (src->curtile) &&
dest->h == tile_eheight (dest->curtile))
{
-#ifdef COWSHOW
- fputc('!',stderr);
-#endif
tile_manager_map_over_tile (dest->tiles,
dest->curtile, src->curtile);
}
@@ -1996,10 +1990,6 @@ copy_region (PixelRegion *src,
gint h = src->h;
gint pixels = src->w * src->bytes;
-#ifdef COWSHOW
- fputc ('.',stderr);
-#endif
-
while (h --)
{
memcpy (d, s, pixels);
@@ -2009,11 +1999,6 @@ copy_region (PixelRegion *src,
}
}
}
-
-#ifdef COWSHOW
- fputc (']',stderr);
- fputc ('\n',stderr);
-#endif
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]