ClearColor() 개인적인 메소드

private ClearColor ( System.Single red, System.Single green, System.Single blue, System.Single alpha ) : void
red System.Single
green System.Single
blue System.Single
alpha System.Single
리턴 void
예제 #1
0
 public void ClearColor(float r, float g, float b, float a)
 {
     GL.ClearColor(r, g, b, a);
     GL.Clear(GL.COLOR_BUFFER_BIT);
 }