Browse Source

Fix typo

pull/1554/head
James Jackson-South 5 years ago
parent
commit
61a45ccd29
  1. 2
      src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs

2
src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs

@ -573,7 +573,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
= DivideRoundAvx(ref a.V2L, ref b.V2L); = DivideRoundAvx(ref a.V2L, ref b.V2L);
Unsafe.As<Vector4, Vector256<float>>(ref a.V3L) Unsafe.As<Vector4, Vector256<float>>(ref a.V3L)
= DivideRoundAvx(ref a.V3L, ref b.V2L); = DivideRoundAvx(ref a.V3L, ref b.V3L);
Unsafe.As<Vector4, Vector256<float>>(ref a.V4L) Unsafe.As<Vector4, Vector256<float>>(ref a.V4L)
= DivideRoundAvx(ref a.V4L, ref b.V4L); = DivideRoundAvx(ref a.V4L, ref b.V4L);

Loading…
Cancel
Save