Browse Source

Fix extensions namespace.

af/merge-core
James Jackson-South 6 years ago
parent
commit
742a51a2d6
  1. 1
      README.md
  2. 2
      src/ImageSharp/Processing/Extensions/DiffuseExtensions.cs
  3. 1
      tests/ImageSharp.Benchmarks/Samplers/Diffuse.cs
  4. 1
      tests/ImageSharp.Tests/Processing/Dithering/DitherTest.cs
  5. 5
      tests/ImageSharp.Tests/Processing/Processors/Dithering/DitherTests.cs

1
README.md

@ -155,6 +155,7 @@ Core Team
- [Dirk Lemstra](https://github.com/dlemstra) - [Dirk Lemstra](https://github.com/dlemstra)
- [Anton Firsov](https://github.com/antonfirsov) - [Anton Firsov](https://github.com/antonfirsov)
- [Scott Williams](https://github.com/tocsoft) - [Scott Williams](https://github.com/tocsoft)
- [Brian Popow](https://github.com/brianpopow)
### Backers ### Backers

2
src/ImageSharp/Processing/Extensions/DiffuseExtensions.cs

@ -6,7 +6,7 @@ using System;
using SixLabors.ImageSharp.Processing.Processors.Dithering; using SixLabors.ImageSharp.Processing.Processors.Dithering;
using SixLabors.Primitives; using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Processing.Dithering namespace SixLabors.ImageSharp.Processing
{ {
/// <summary> /// <summary>
/// Defines extension methods to apply diffusion to an <see cref="Image"/> /// Defines extension methods to apply diffusion to an <see cref="Image"/>

1
tests/ImageSharp.Benchmarks/Samplers/Diffuse.cs

@ -1,7 +1,6 @@
using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Attributes;
using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing; using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Dithering;
using SixLabors.Primitives; using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Benchmarks.Samplers namespace SixLabors.ImageSharp.Benchmarks.Samplers

1
tests/ImageSharp.Tests/Processing/Dithering/DitherTest.cs

@ -4,7 +4,6 @@
using System; using System;
using SixLabors.ImageSharp.Processing; using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Dithering;
using SixLabors.ImageSharp.Processing.Processors.Dithering; using SixLabors.ImageSharp.Processing.Processors.Dithering;
using Xunit; using Xunit;

5
tests/ImageSharp.Tests/Processing/Processors/Dithering/DitherTests.cs

@ -1,9 +1,8 @@
// Copyright (c) Six Labors and contributors. // Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing; using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Dithering;
using SixLabors.ImageSharp.Processing.Processors.Dithering; using SixLabors.ImageSharp.Processing.Processors.Dithering;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison; using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
@ -149,4 +148,4 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Binarization
appendPixelTypeToFileName: false); appendPixelTypeToFileName: false);
} }
} }
} }

Loading…
Cancel
Save