Browse Source

Fix SA1101

pull/2241/head
Ynse Hoornenborg 3 years ago
parent
commit
ec79e87715
  1. 2
      src/ImageSharp/Processing/Processors/Convolution/MedianRowOperation{TPixel}.cs

2
src/ImageSharp/Processing/Processors/Convolution/MedianRowOperation{TPixel}.cs

@ -46,7 +46,7 @@ internal readonly struct MedianRowOperation<TPixel> : IRowOperation<Vector4>
/// <inheritdoc/>
[MethodImpl(InliningOptions.ShortMethod)]
public int GetRequiredBufferLength(Rectangle bounds)
=> (2 * this.kernelSize * this.kernelSize) + bounds.Width + (kernelSize * bounds.Width);
=> (2 * this.kernelSize * this.kernelSize) + bounds.Width + (this.kernelSize * bounds.Width);
public void Invoke(int y, Span<Vector4> span)
{

Loading…
Cancel
Save