Browse Source

remove dubug if

af/merge-core
Scott Williams 9 years ago
parent
commit
41b92dbde4
  1. 4
      src/ImageSharp.Drawing/Processors/FillRegionProcessor.cs

4
src/ImageSharp.Drawing/Processors/FillRegionProcessor.cs

@ -117,10 +117,6 @@ namespace SixLabors.ImageSharp.Drawing.Processors
float subpixelFractionPoint = subpixelFraction / subpixelCount;
for (float subPixel = (float)y; subPixel < y + 1; subPixel += subpixelFraction)
{
if(y == 102)
{
Debugger.Break();
}
int pointsFound = region.Scan(subPixel, buffer, 0);
if (pointsFound == 0)
{

Loading…
Cancel
Save