Esempio n. 1
0
 public void FromL16(L16 source)
 {
     byte rgb = ImageMaths.DownScaleFrom16BitTo8Bit(source.PackedValue);
     this.R = rgb;
     this.G = rgb;
     this.B = rgb;
 }
Esempio n. 2
0
        public void FromL16(L16 source)
        {
            byte rgb = ColorNumerics.DownScaleFrom16BitTo8Bit(source.PackedValue);

            this.R = rgb;
            this.G = rgb;
            this.B = rgb;
        }
Esempio n. 3
0
 public void FromL16(L16 source) => this.FromScaledVector4(source.ToScaledVector4());
Esempio n. 4
0
 public void FromL16(L16 source)
 {
     this.R = source.PackedValue;
     this.G = source.PackedValue;
     this.B = source.PackedValue;
 }