We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51259af commit 809ba98Copy full SHA for 809ba98
src/ImageSharp/Formats/Jpeg/Components/ColorConverters/JpegColorConverterBase.cs
@@ -200,6 +200,11 @@ private static JpegColorConverterBase GetGrayScaleConverter(int precision)
200
return new GrayscaleAvx(precision);
201
}
202
203
+ if (JpegColorConverterArm.IsSupported)
204
+ {
205
+ return new GrayscaleArm(precision);
206
+ }
207
+
208
if (JpegColorConverterVector.IsSupported)
209
{
210
return new GrayScaleVector(precision);
0 commit comments