Example usage for org.lwjgl.opengl GL42 glDrawArraysInstancedBaseInstance

List of usage examples for org.lwjgl.opengl GL42 glDrawArraysInstancedBaseInstance

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL42 glDrawArraysInstancedBaseInstance.

Prototype

public static void glDrawArraysInstancedBaseInstance(@NativeType("GLenum") int mode,
        @NativeType("GLint") int first, @NativeType("GLsizei") int count, @NativeType("GLsizei") int primcount,
        @NativeType("GLuint") int baseinstance) 

Source Link

Document

Draws multiple instances of a range of elements with an offset applied to instanced attributes.

Usage

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

License:Open Source License

public static void glDrawArraysInstancedBaseInstance(int a, int b, int c, int d, int e) {
    GL42.glDrawArraysInstancedBaseInstance(a, b, c, d, e);
}