Example usage for org.lwjgl.opengl GL43 glVertexBindingDivisor

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

Introduction

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

Prototype

public static void glVertexBindingDivisor(@NativeType("GLuint") int bindingindex,
        @NativeType("GLuint") int divisor) 

Source Link

Document

Modifies the rate at which generic vertex attributes advance during instanced rendering.

Usage

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

License:Open Source License

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