Browse Source

Made StyleCode happy

pull/1065/head
Sergio Pedri 6 years ago
parent
commit
ca3c284e6a
  1. 3
      src/ImageSharp/Processing/Delegates/PixelShader.cs
  2. 3
      src/ImageSharp/Processing/Delegates/PositionAwarePixelShader.cs
  3. 3
      src/ImageSharp/Processing/Processors/PixelShading/Abstract/PixelShaderProcessorBase.cs

3
src/ImageSharp/Processing/Delegates/PixelShader.cs

@ -1,3 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Numerics;

3
src/ImageSharp/Processing/Delegates/PositionAwarePixelShader.cs

@ -1,3 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Numerics;

3
src/ImageSharp/Processing/Processors/PixelShading/Abstract/PixelShaderProcessorBase.cs

@ -25,7 +25,8 @@ namespace SixLabors.ImageSharp.Processing.Processors.PixelShading.Abstract
/// <param name="sourceRectangle">The source area to process for the current processor instance.</param>
protected PixelShaderProcessorBase(Image<TPixel> source, Rectangle sourceRectangle)
: base(source, sourceRectangle)
{ }
{
}
/// <inheritdoc/>
protected override void OnFrameApply(ImageFrame<TPixel> source)

Loading…
Cancel
Save