Skip to content

Commit

Permalink
display last debugging character
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Feb 13, 2022
1 parent cb6374d commit e6a76f8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions magick/draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -4733,7 +4733,7 @@ static double GetOpacityPixel(PolygonInfo *polygon_info,const double mid,
else
{
alpha=PerceptibleReciprocal(alpha);
beta=delta.x*(y-q->y)-delta.y*(x-q->x)+MagickEpsilon;
beta=delta.x*(y-q->y)-delta.y*(x-q->x);
distance=alpha*beta*beta;
}
}
Expand Down Expand Up @@ -4938,12 +4938,10 @@ static MagickBooleanType DrawPolygonPrimitive(Image *image,
PixelPacket
*magick_restrict q;

ssize_t
x;

ssize_t
start_x,
stop_x;
stop_x,
x;

if (status == MagickFalse)
continue;
Expand Down

0 comments on commit e6a76f8

Please sign in to comment.