Browse Source

ImageSharp-762_Aot-compiling: renamed to AotCompilerTools

pull/767/head
Dan Manning 8 years ago
parent
commit
6558464c75
  1. 2
      src/ImageSharp/Advanced/AotCompilerTools.cs
  2. 2
      tests/ImageSharp.Tests/Advanced/AotCompilerTests.cs

2
src/ImageSharp/Advanced/AotCompiler.cs → src/ImageSharp/Advanced/AotCompilerTools.cs

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Advanced
/// these are caused because not every possible generic instantiation can be determined up front at compile time. /// these are caused because not every possible generic instantiation can be determined up front at compile time.
/// The Aot Compiler is designed to overcome the limitations of this compiler. /// The Aot Compiler is designed to overcome the limitations of this compiler.
/// </summary> /// </summary>
public static class AotCompiler public static class AotCompilerTools
{ {
/// <summary> /// <summary>
/// Seeds the compiler using the given pixel format. /// Seeds the compiler using the given pixel format.

2
tests/ImageSharp.Tests/Advanced/AotCompilerTests.cs

@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp.Tests.Advanced
[Fact] [Fact]
public void AotCompiler_NoExceptions() public void AotCompiler_NoExceptions()
{ {
AotCompiler.Seed<Rgba32>(); AotCompilerTools.Seed<Rgba32>();
} }
} }
} }

Loading…
Cancel
Save