Exemplo n.º 1
0
 public static void ClearColor(float red, float green, float blue, float alpha)
 {
     Delegates.ClearColor(red, green, blue, alpha);
 }
Exemplo n.º 2
0
 public static void ClearColor(ref Color4 color)
 {
     Delegates.ClearColor(color.R, color.G, color.B, color.A);
 }