|
|
@ -643,4 +643,15 @@ public class JoglGL implements GL, GL2, GL3, GL4 { |
|
|
|
public void glBindBufferBase(final int target, final int index, final int buffer) { |
|
|
|
public void glBindBufferBase(final int target, final int index, final int buffer) { |
|
|
|
GLContext.getCurrentGL().getGL3bc().glBindBufferBase(target, index, buffer); |
|
|
|
GLContext.getCurrentGL().getGL3bc().glBindBufferBase(target, index, buffer); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public int glGetProgramResourceIndex(final int program, final int programInterface, final String name) { |
|
|
|
|
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
|
|
|
|
//return GLContext.getCurrentGL().getGL4bc().glGetProgramResourceIndex(program, programInterface, name);
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void glShaderStorageBlockBinding(final int program, final int storageBlockIndex, final int storageBlockBinding) { |
|
|
|
|
|
|
|
GLContext.getCurrentGL().getGL4bc().glShaderStorageBlockBinding(program, storageBlockIndex, storageBlockBinding); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|