Browse Source

ImageSharp-762_Aot-compiling: whitespace cleanup

pull/767/head
Dan Manning 7 years ago
parent
commit
e42cf0cd69
  1. 6
      src/ImageSharp/Advanced/AotCompiler.cs

6
src/ImageSharp/Advanced/AotCompiler.cs

@ -63,9 +63,9 @@ namespace SixLabors.ImageSharp.Advanced
/// If you are running ImageSharp on iOS and try to call SaveAsGif, it will throw an excepion:
/// "Attempting to JIT compile method... OctreeFrameQuantizer.ConstructPalette... while running in aot-only mode."
/// The reason this happens is the SaveAsGif method makes haevy use of generics, which are too confusing for the AoT
/// compiler used on Xamarin.iOS. It spins up the JIT compiler to try and figure it out, but that is an illegal op on
/// iOS so it bombs out.
/// If you are getting the above error, you need to call this method, which will pre-seed the AoT compiler with the
/// compiler used on Xamarin.iOS. It spins up the JIT compiler to try and figure it out, but that is an illegal op on
/// iOS so it bombs out.
/// If you are getting the above error, you need to call this method, which will pre-seed the AoT compiler with the
/// necessary methods to complete the SaveAsGif call. That's it, otherwise you should NEVER need this method!!!
/// </summary>
/// <typeparam name="TPixel">The pixel format.</typeparam>

Loading…
Cancel
Save