about summary refs log tree commit diff
path: root/lib/path.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2017-03-19 15:39:35 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2017-03-19 15:39:35 +0000
commit53501b361d00b707514a68ce298a6af1d017717a (patch)
treead051360ea4e3b19d738efd24757f82611a66392 /lib/path.c
parentdc5872298ba5e2f52dbacb283d348e4f11a2d77d (diff)
downloadnetpbm-mirror-53501b361d00b707514a68ce298a6af1d017717a.tar.gz
netpbm-mirror-53501b361d00b707514a68ce298a6af1d017717a.tar.xz
netpbm-mirror-53501b361d00b707514a68ce298a6af1d017717a.zip
Release 10.77.03
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2922 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/path.c')
-rw-r--r--lib/path.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/path.c b/lib/path.c
index 82fd874c..10ae92d2 100644
--- a/lib/path.c
+++ b/lib/path.c
@@ -269,7 +269,6 @@ pushStack(fillStack * const stackP,
     assert(stackP->topOfStack < stackP->stackSize);
 
     stackP->stack[stackP->topOfStack++] = newPoint;
-pm_message("pushed (%u, %u) at %u", newPoint.x, newPoint.y, stackP->topOfStack-1);
 }
 
 
@@ -282,7 +281,6 @@ popStack(fillStack * const stackP) {
     assert(stackP->topOfStack < stackP->stackSize);
 
     retval = stackP->stack[--stackP->topOfStack];
-pm_message("popped (%u, %u) at %u", retval.x, retval.y, stackP->topOfStack);
     return retval;
 }
 
@@ -321,7 +319,6 @@ drawFillLine(ppmd_point const begPoint,
 
     assert(begPoint.y == endPoint.y);
 
-pm_message("filling from (%u, %u) to (%u, %u)", begPoint.x, begPoint.y, endPoint.x, endPoint.y);
     row = begPoint.y;
 
     if (begPoint.x <= endPoint.x) {
@@ -350,7 +347,6 @@ fillPoint(fillStack * const stackP,
    Fill the image in 'pixels' with color 'color' and update *stackP as
    required.
 -----------------------------------------------------------------------------*/
-pm_message("filling point (%u, %u)", point.x, point.y);
     if (inStackDirection(stackP, point)) {
         pushStack(stackP, point);
         pixels[point.y][point.x] = color;