예제 #1
0
파일: Byte4.cs 프로젝트: wilka/ImageSharp
 public void FromLa16(La16 source) => this.FromScaledVector4(source.ToScaledVector4());
예제 #2
0
파일: Bgr24.cs 프로젝트: wilka/ImageSharp
 public void FromLa16(La16 source)
 {
     this.R = source.L;
     this.G = source.L;
     this.B = source.L;
 }