コード例 #1
0
ファイル: GLDebugLayer.cs プロジェクト: yongaru/uno
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
     }
     finally
     {
         this.EndFunc();
     }
 }
コード例 #2
0
ファイル: GLDebugLayer.cs プロジェクト: yongaru/uno
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendFunc(src, dst);
     }
     finally
     {
         this.EndFunc();
     }
 }
コード例 #3
0
ファイル: GL.cs プロジェクト: mortend/uno
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     TKGL.BlendFuncSeparate((BlendingFactorSrc)srcRGB, (BlendingFactorDest)dstRGB,
                            (BlendingFactorSrc)srcAlpha, (BlendingFactorDest)dstAlpha);
 }
コード例 #4
0
ファイル: GL.cs プロジェクト: mortend/uno
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     TKGL.BlendFunc((BlendingFactorSrc)src, (BlendingFactorDest)dst);
 }
コード例 #5
0
ファイル: GL.cs プロジェクト: yongaru/uno
 public static void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     GL._gl.BlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
 }
コード例 #6
0
ファイル: GL.cs プロジェクト: yongaru/uno
 public static void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     GL._gl.BlendFunc(src, dst);
 }
コード例 #7
0
ファイル: DummyGL.cs プロジェクト: mortend/uno
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
 }
コード例 #8
0
ファイル: DummyGL.cs プロジェクト: mortend/uno
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
 }