Example usage for org.lwjgl.opengl GL43 glVertexAttribBinding

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

Introduction

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

Prototype

public static void glVertexAttribBinding(@NativeType("GLuint") int attribindex,
        @NativeType("GLuint") int bindingindex) 

Source Link

Document

Associate a vertex attribute and a vertex buffer binding.

Usage

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

License:Open Source License

public static void glVertexAttribBinding(int a, int b) {
    GL43.glVertexAttribBinding(a, b);
}