From 3f652a21570cb7c9578f47a3b14d3c86b70f52c5 Mon Sep 17 00:00:00 2001 From: Sergio Pedri Date: Fri, 20 Dec 2019 18:19:16 +0100 Subject: [PATCH] Fixed a typo --- .../PixelShading/PositionAwarePixelShaderProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs b/src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs index 60125b2e27..a1fdc60821 100644 --- a/src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs +++ b/src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs @@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.PixelShading public IImageProcessor CreatePixelSpecificProcessor(Image source, Rectangle sourceRectangle) where TPixel : struct, IPixel { - return new PositionAwarePixelShader(this, source, sourceRectangle); + return new PositionAwarePixelShaderProcessor(this, source, sourceRectangle); } } }