Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Return Vector not Scalar
  • Loading branch information
stefannikolei committed Mar 26, 2023
commit b9e54a16a3cf7a9bfdcc61f77fbcc84ed77af73d
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private static JpegColorConverterBase GetRgbConverter(int precision)

if (JpegColorConverterVector.IsSupported)
{
return new RgbScalar(precision);
return new RgbVector(precision);
}

return new RgbScalar(precision);
Expand Down