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 7b13ae2 commit 33fe244Copy full SHA for 33fe244
src/ImageSharp/Formats/Jpeg/Components/ColorConverters/JpegColorConverterBase.cs
@@ -162,14 +162,14 @@ private static JpegColorConverterBase GetYccKConverter(int precision)
162
return new YccKAvx(precision);
163
}
164
165
- if (JpegColorConverterVector.IsSupported)
+ if (JpegColorConverterArm64.IsSupported)
166
{
167
- return new YccKVector(precision);
+ return new YccKArm64(precision);
168
169
170
- if (JpegColorConverterArm64.IsSupported)
+ if (JpegColorConverterVector.IsSupported)
171
172
- return new YccKArm64(precision);
+ return new YccKVector(precision);
173
174
175
return new YccKScalar(precision);
0 commit comments