コード例 #1
0
ファイル: GLDebugLayer.cs プロジェクト: yongaru/uno
 public void DepthFunc(GLDepthFunction func)
 {
     try
     {
         this.BeginFunc();
         this._gl.DepthFunc(func);
     }
     finally
     {
         this.EndFunc();
     }
 }
コード例 #2
0
ファイル: GL.cs プロジェクト: yongaru/uno
 public static void DepthFunc(GLDepthFunction func)
 {
     GL._gl.DepthFunc(func);
 }
コード例 #3
0
ファイル: GL.cs プロジェクト: mortend/uno
 public void DepthFunc(GLDepthFunction func)
 {
     TKGL.DepthFunc((DepthFunction)func);
 }
コード例 #4
0
ファイル: DummyGL.cs プロジェクト: mortend/uno
 public void DepthFunc(GLDepthFunction func)
 {
 }