Example usage for org.lwjgl.opengl GL43 glBindVertexBuffer

List of usage examples for org.lwjgl.opengl GL43 glBindVertexBuffer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glBindVertexBuffer.

Prototype

public static void glBindVertexBuffer(@NativeType("GLuint") int bindingindex, @NativeType("GLuint") int buffer,
        @NativeType("GLintptr") long offset, @NativeType("GLsizei") int stride) 

Source Link

Document

Binds a buffer to a vertex buffer bind point.

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glBindVertexBuffer(int a, int b, long c, int d) {
    GL43.glBindVertexBuffer(a, b, c, d);
}