Exemple #1
0
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
     }
     finally
     {
         this.EndFunc();
     }
 }
Exemple #2
0
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendFunc(src, dst);
     }
     finally
     {
         this.EndFunc();
     }
 }
Exemple #3
0
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     TKGL.BlendFuncSeparate((BlendingFactorSrc)srcRGB, (BlendingFactorDest)dstRGB,
                            (BlendingFactorSrc)srcAlpha, (BlendingFactorDest)dstAlpha);
 }
Exemple #4
0
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     TKGL.BlendFunc((BlendingFactorSrc)src, (BlendingFactorDest)dst);
 }
Exemple #5
0
 public static void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     GL._gl.BlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
 }
Exemple #6
0
 public static void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     GL._gl.BlendFunc(src, dst);
 }
Exemple #7
0
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
 }
Exemple #8
0
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
 }