Browse Source

Update Convolution2PassProcessor{TPixel}.cs

pull/3113/head
James Jackson-South 1 month ago
parent
commit
6998d43c61
  1. 3
      src/ImageSharp/Processing/Processors/Convolution/Convolution2PassProcessor{TPixel}.cs

3
src/ImageSharp/Processing/Processors/Convolution/Convolution2PassProcessor{TPixel}.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System.Buffers;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
@ -107,8 +106,6 @@ internal class Convolution2PassProcessor<TPixel> : ImageProcessor<TPixel>
mapXY.BuildSamplingOffsetMap(this.KernelX.Length, this.KernelX.Length, interest, this.BorderWrapModeX, this.BorderWrapModeY);
MemoryAllocator allocator = this.Configuration.MemoryAllocator;
// Horizontal convolution
HorizontalConvolutionRowOperation horizontalOperation = new(
interest,

Loading…
Cancel
Save