Skip to content

Commit

Permalink
Expect YCbCrVector on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpopow committed Mar 27, 2023
1 parent 2f6edd7 commit dae030d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/ImageSharp.Tests/Formats/Jpg/JpegColorConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@ static void RunTest(string arg)
{
expectedType = typeof(JpegColorConverterBase.YCbCrVector);
}
else if (AdvSimd.IsSupported)
{
expectedType = typeof(JpegColorConverterBase.YCbCrVector);
}

// act
JpegColorConverterBase converter = JpegColorConverterBase.GetConverter(JpegColorSpace.YCbCr, 8);
Expand Down

0 comments on commit dae030d

Please # to comment.