Пример #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();
     }
 }
Пример #2
0
 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
 public void BlendFuncSeparate(GLBlendingFactor srcRGB, GLBlendingFactor dstRGB, GLBlendingFactor srcAlpha, GLBlendingFactor dstAlpha)
 {
 }
Пример #8
0
 public void BlendFunc(GLBlendingFactor src, GLBlendingFactor dst)
 {
 }