Simon Cropp
7 years ago
No known key found for this signature in database
GPG Key ID: C75A8447313A3D69
1 changed files with
4 additions and
3 deletions
-
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); |
|
|
|
|