Browse Source

Seal ResizeWorker

pull/1108/head
James Jackson-South 6 years ago
parent
commit
508381851a
  1. 2
      src/ImageSharp/Processing/Processors/Transforms/Resize/ResizeWorker.cs

2
src/ImageSharp/Processing/Processors/Transforms/Resize/ResizeWorker.cs

@ -19,7 +19,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms
/// When sliding the window, the contents of the bottom window band are copied to the new top band.
/// For more details, and visual explanation, see "ResizeWorker.pptx".
/// </summary>
internal class ResizeWorker<TPixel> : IDisposable
internal sealed class ResizeWorker<TPixel> : IDisposable
where TPixel : struct, IPixel<TPixel>
{
private readonly Buffer2D<Vector4> transposedFirstPassBuffer;

Loading…
Cancel
Save