Exemplo n.º 1
0
 public void BlendEquationSeparate(GLBlendEquation modeRgb, GLBlendEquation modeAlpha)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendEquationSeparate(modeRgb, modeAlpha);
     }
     finally
     {
         this.EndFunc();
     }
 }
Exemplo n.º 2
0
 public void BlendEquation(GLBlendEquation mode)
 {
     try
     {
         this.BeginFunc();
         this._gl.BlendEquation(mode);
     }
     finally
     {
         this.EndFunc();
     }
 }
Exemplo n.º 3
0
Arquivo: GL.cs Projeto: mortend/uno
 public void BlendEquationSeparate(GLBlendEquation modeRgb, GLBlendEquation modeAlpha)
 {
     TKGL.BlendEquationSeparate((BlendEquationMode)modeRgb, (BlendEquationMode)modeAlpha);
 }
Exemplo n.º 4
0
Arquivo: GL.cs Projeto: mortend/uno
 public void BlendEquation(GLBlendEquation mode)
 {
     TKGL.BlendEquation((BlendEquationMode)mode);
 }
Exemplo n.º 5
0
Arquivo: GL.cs Projeto: yongaru/uno
 public static void BlendEquationSeparate(GLBlendEquation modeRgb, GLBlendEquation modeAlpha)
 {
     GL._gl.BlendEquationSeparate(modeRgb, modeAlpha);
 }
Exemplo n.º 6
0
Arquivo: GL.cs Projeto: yongaru/uno
 public static void BlendEquation(GLBlendEquation mode)
 {
     GL._gl.BlendEquation(mode);
 }
Exemplo n.º 7
0
 public void BlendEquationSeparate(GLBlendEquation modeRgb, GLBlendEquation modeAlpha)
 {
 }
Exemplo n.º 8
0
 public void BlendEquation(GLBlendEquation mode)
 {
 }