Example usage for org.lwjgl.opengl ARBUniformBufferObject glBindBufferBase

List of usage examples for org.lwjgl.opengl ARBUniformBufferObject glBindBufferBase

Introduction

In this page you can find the example usage for org.lwjgl.opengl ARBUniformBufferObject glBindBufferBase.

Prototype

public static void glBindBufferBase(@NativeType("GLenum") int target, @NativeType("GLuint") int index,
        @NativeType("GLuint") int buffer) 

Source Link

Document

Binds a buffer object to an indexed buffer target.

Usage

From source file:jpcsp.graphics.RE.RenderingEngineLwjgl.java

License:Open Source License

@Override
public void bindBufferBase(int target, int bindingPoint, int buffer) {
    ARBUniformBufferObject.glBindBufferBase(bufferTargetToGL[target], bindingPoint, buffer);
}