Browse Source

Fixed docs

pull/1761/head
Dmitry Pentin 5 years ago
parent
commit
c6c9f2beef
  1. 2
      src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs

2
src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs

@ -130,7 +130,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
/// Requires Ssse3 support.
/// </remarks>
/// <param name="block">Input matrix.</param>
/// <param name="dest">Matrix to store the result. Can be a reference to input matrix.</param>
public static unsafe void ApplyZigZagOrderingSse(ref Block8x8 block)
{
DebugGuard.IsTrue(Ssse3.IsSupported, "Ssse3 support is required to run this operation!");
@ -232,7 +231,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
/// Requires Avx2 support.
/// </remarks>
/// <param name="block">Input matrix.</param>
/// <param name="dest">Matrix to store the result. Can be a reference to input matrix.</param>
public static unsafe void ApplyZigZagOrderingAvx(ref Block8x8 block)
{
DebugGuard.IsTrue(Avx2.IsSupported, "Avx2 support is required to run this operation!");

Loading…
Cancel
Save