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); } } }