Browse Source

Merge remote-tracking branch 'origin/beta-1' into image-frames

pull/326/head
Scott Williams 9 years ago
parent
commit
13a40ae77f
  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; float subpixelFractionPoint = subpixelFraction / subpixelCount;
for (float subPixel = (float)y; subPixel < y + 1; subPixel += subpixelFraction) for (float subPixel = (float)y; subPixel < y + 1; subPixel += subpixelFraction)
{ {
if(y == 102)
{
Debugger.Break();
}
int pointsFound = region.Scan(subPixel, buffer, 0); int pointsFound = region.Scan(subPixel, buffer, 0);
if (pointsFound == 0) if (pointsFound == 0)
{ {

Loading…
Cancel
Save