Ejemplo n.º 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();
     }
 }
Ejemplo n.º 2
0
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendFunc(src, dst);
     }
     finally
     {
         this.EndFunc();
     }
 }
Ejemplo n.º 3
0
Archivo: GL.cs Proyecto: mortend/uno
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     TKGL.BlendFuncSeparate((BlendingFactorSrc)srcRGB, (BlendingFactorDest)dstRGB,
                            (BlendingFactorSrc)srcAlpha, (BlendingFactorDest)dstAlpha);
 }
Ejemplo n.º 4
0
Archivo: GL.cs Proyecto: mortend/uno
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     TKGL.BlendFunc((BlendingFactorSrc)src, (BlendingFactorDest)dst);
 }
Ejemplo n.º 5
0
Archivo: GL.cs Proyecto: yongaru/uno
 public static void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
     GL._gl.BlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
 }
Ejemplo n.º 6
0
Archivo: GL.cs Proyecto: yongaru/uno
 public static void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
     GL._gl.BlendFunc(src, dst);
 }
Ejemplo n.º 7
0
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
 }
Ejemplo n.º 8
0
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
 }