Browse Source

Fixed a typo

af/merge-core
Sergio Pedri 6 years ago
parent
commit
3f652a2157
  1. 2
      src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs

2
src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs

@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.PixelShading
public IImageProcessor<TPixel> CreatePixelSpecificProcessor<TPixel>(Image<TPixel> source, Rectangle sourceRectangle)
where TPixel : struct, IPixel<TPixel>
{
return new PositionAwarePixelShader<TPixel>(this, source, sourceRectangle);
return new PositionAwarePixelShaderProcessor<TPixel>(this, source, sourceRectangle);
}
}
}

Loading…
Cancel
Save