BlendColor() 공개 정적인 메소드

public static BlendColor ( System.Color color ) : void
color System.Color
리턴 void
예제 #1
0
 public static void BlendColor(Color4 color)
 {
     GL.BlendColor(color.R, color.G, color.B, color.A);
 }
예제 #2
0
 public static void BlendColor(AppKit.NSColor color)
 {
     GL.BlendColor((float)color.RedComponent, (float)color.GreenComponent, (float)color.BlueComponent, (float)color.AlphaComponent);
 }
예제 #3
0
파일: GLHelper.cs 프로젝트: batbuild/opentk
 public static void BlendColor(Color color)
 {
     GL.BlendColor(color.R / 255.0f, color.G / 255.0f, color.B / 255.0f, color.A / 255.0f);
 }
예제 #4
0
 public static void BlendColor(System.Drawing.Color color)
 {
     GL.BlendColor(color.R / 255.0f, color.G / 255.0f, color.B / 255.0f, color.A / 255.0f);
 }
예제 #5
0
 public static void BlendColor(LayoutFarm.Drawing.Color color)
 {
     GL.BlendColor(color.R / 255.0f, color.G / 255.0f, color.B / 255.0f, color.A / 255.0f);
 }