summaryrefslogtreecommitdiffstats
path: root/make/config/jogl/gl-impl-CustomJavaCode-common.java
blob: 564606799575b8a2720265225cc6bb84eb563d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  public GLProfile getGLProfile() {
    return this.glProfile;
  }
  private GLProfile glProfile;

  public int glGetBoundBuffer(int target) {
    return bufferStateTracker.getBoundBufferObject(target, this);
  }

  public boolean glIsVBOArrayEnabled() {
    return checkArrayVBOEnabled(false);
  }

  public boolean glIsVBOElementEnabled() {
    return checkElementVBOEnabled(false);
  }