예제 #1
0
  public void setBlendMode(int mode) {
    oldBlendMode = blendMode;
    blendMode = mode;

    GL14.glBlendEquation(GL14.GL_FUNC_ADD);
    if (mode < 100) {
      g.setDrawMode(mode);
      return;
    }

    try {
      Reflection.invokePrivateMethod(mPredraw, g);
    } catch (Exception e) {
      App.getApp().handle(e);
    }
    gl.glEnable(SGL.GL_BLEND);
    gl.glColorMask(true, true, true, true);

    if (mode == BM_ADD || mode == BM_SUBTRACT) {
      gl.glBlendFunc(SGL.GL_SRC_ALPHA, SGL.GL_ONE);
      if (mode == BM_SUBTRACT) {
        GL14.glBlendEquation(GL14.GL_FUNC_SUBTRACT);
        GL14.glBlendEquation(GL14.GL_FUNC_REVERSE_SUBTRACT);
      }
    }

    try {
      Reflection.invokePrivateMethod(mPostdraw, g);
    } catch (Exception e) {
      App.getApp().handle(e);
    }
  }
예제 #2
0
 /*  44:    */
 /*  45:    */ public void a() /*  46:    */ {
   /*  47: 46 */ if (equals(a)) {
     /*  48: 47 */ return;
     /*  49:    */ }
   /*  50: 50 */ if ((a == null) || (this.h != a.b()))
   /*  51:    */ {
     /*  52: 51 */ a = this;
     /*  53: 52 */ if (this.h)
     /*  54:    */ {
       /*  55: 53 */ cjm.k();
       /*  56: 54 */ return;
       /*  57:    */ }
     /*  58: 56 */ cjm.l();
     /*  59:    */ }
   /*  60: 59 */ GL14.glBlendEquation(this.f);
   /*  61: 61 */ if (this.g) {
     /*  62: 62 */ cjm.a(this.b, this.d, this.c, this.e);
     /*  63:    */ } else {
     /*  64: 64 */ cjm.b(this.b, this.d);
     /*  65:    */ }
   /*  66:    */ }
예제 #3
0
파일: GdxGL20.java 프로젝트: hanchao/vtm
 public void glBlendEquation(int mode) {
   GL14.glBlendEquation(mode);
 }