Example usage for org.lwjgl.opengl GL40 glDrawArraysIndirect

List of usage examples for org.lwjgl.opengl GL40 glDrawArraysIndirect

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glDrawArraysIndirect.

Prototype

public static void glDrawArraysIndirect(@NativeType("GLenum") int mode,
        @NativeType("void const *") int[] indirect) 

Source Link

Document

Array version of: #glDrawArraysIndirect DrawArraysIndirect

Usage

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

License:Open Source License

public static void glDrawArraysIndirect(int a, long b) {
    GL40.glDrawArraysIndirect(a, b);
}

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

License:Open Source License

public static void glDrawArraysIndirect(int a, ByteBuffer b) {
    GL40.glDrawArraysIndirect(a, b);
}

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

License:Open Source License

public static void glDrawArraysIndirect(int a, IntBuffer b) {
    GL40.glDrawArraysIndirect(a, b);
}