Browse Source

cache max in ConvertToRgba

pull/982/head
Simon Cropp 7 years ago
parent
commit
08f1b08d5a
No known key found for this signature in database GPG Key ID: C75A8447313A3D69
  1. 7
      src/ImageSharp/Formats/Jpeg/Components/Decoder/ColorConverters/JpegColorConverter.FromGrayScale.cs

7
src/ImageSharp/Formats/Jpeg/Components/Decoder/ColorConverters/JpegColorConverter.FromGrayScale.cs

@ -19,10 +19,11 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Decoder.ColorConverters
public override void ConvertToRgba(in ComponentValues values, Span<Vector4> result)
{
var maximum = 1 / this.MaximumValue;
var scale = new Vector4(
1 / this.MaximumValue,
1 / this.MaximumValue,
1 / this.MaximumValue,
maximum,
maximum,
maximum,
1F);
ref float sBase = ref MemoryMarshal.GetReference(values.Component0);

Loading…
Cancel
Save