Browse Source

ImageSharp-762_Aot-compiling: renamed to AotCompilerTools

af/merge-core
Dan Manning 8 years ago
parent
commit
3f2953f611
  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.
/// The Aot Compiler is designed to overcome the limitations of this compiler.
/// </summary>
public static class AotCompiler
public static class AotCompilerTools
{
/// <summary>
/// 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]
public void AotCompiler_NoExceptions()
{
AotCompiler.Seed<Rgba32>();
AotCompilerTools.Seed<Rgba32>();
}
}
}

Loading…
Cancel
Save