Browse Source

Minor code refactoring

af/merge-core
Sergio Pedri 6 years ago
parent
commit
bdd69f89cd
  1. 1
      src/ImageSharp/Processing/Extensions/PixelShaderExtensions.cs
  2. 2
      src/ImageSharp/Processing/Processors/PixelShading/DelegatePixelShaderProcessor.cs
  3. 2
      src/ImageSharp/Processing/Processors/PixelShading/DelegatePixelShaderProcessor{TPixel}.cs

1
src/ImageSharp/Processing/Extensions/PixelShaderExtensions.cs

@ -3,6 +3,7 @@
using SixLabors.ImageSharp.Processing.Delegates;
using SixLabors.ImageSharp.Processing.Processors;
using SixLabors.ImageSharp.Processing.Processors.PixelShading;
using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Processing

2
src/ImageSharp/Processing/Processors/DelegatePixelShaderProcessor.cs → src/ImageSharp/Processing/Processors/PixelShading/DelegatePixelShaderProcessor.cs

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing.Delegates;
using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Processing.Processors
namespace SixLabors.ImageSharp.Processing.Processors.PixelShading
{
/// <summary>
/// Applies a user defined pixel shader effect through a given delegate.

2
src/ImageSharp/Processing/Processors/DelegatePixelShaderProcessor{TPixel}.cs → src/ImageSharp/Processing/Processors/PixelShading/DelegatePixelShaderProcessor{TPixel}.cs

@ -10,7 +10,7 @@ using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing.Delegates;
using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Processing.Processors
namespace SixLabors.ImageSharp.Processing.Processors.PixelShading
{
/// <summary>
/// Performs simple binary threshold filtering against an image.
Loading…
Cancel
Save