From: kramm Date: Mon, 30 Oct 2006 09:50:06 +0000 (+0000) Subject: shortified some log messages X-Git-Tag: release-0-8-0~156 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=33cec2f65eef6a6052e0b76fa3b66b4ef9216e6a shortified some log messages --- diff --git a/lib/devices/swf.c b/lib/devices/swf.c index 86b2e2c..99a2240 100644 --- a/lib/devices/swf.c +++ b/lib/devices/swf.c @@ -1511,24 +1511,23 @@ static void drawgfxline(gfxdevice_t*dev, gfxline_t*line) swfoutput_internal*i = (swfoutput_internal*)dev->internal; gfxcoord_t lastx=0,lasty=0,px=0,py=0; char lastwasmoveto; + int lines= 0, splines=0; while(1) { if(!line) break; /* check whether the next segment is zero */ if(line->type == gfx_moveTo) { - msg(" ======== moveTo %.2f %.2f", line->x, line->y); moveto(dev, i->tag, line->x, line->y); px = lastx = line->x; py = lasty = line->y; lastwasmoveto = 1; } if(line->type == gfx_lineTo) { - msg(" ======== lineTo %.2f %.2f", line->x, line->y); lineto(dev, i->tag, line->x, line->y); px = line->x; py = line->y; lastwasmoveto = 0; + lines++; } else if(line->type == gfx_splineTo) { - msg(" ======== splineTo %.2f %.2f", line->x, line->y); plotxy_t s,p; s.x = line->sx;p.x = line->x; s.y = line->sy;p.y = line->y; @@ -1536,9 +1535,11 @@ static void drawgfxline(gfxdevice_t*dev, gfxline_t*line) px = line->x; py = line->y; lastwasmoveto = 0; + splines++; } line = line->next; } + msg(" drawgfxline, %d lines, %d splines", lines, splines); }