ClearColor() private method

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
return void
Example #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);
 }