Example usage for org.lwjgl.opengl GL40 glDrawElementsIndirect

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

Introduction

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

Prototype

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

Source Link

Document

Array version of: #glDrawElementsIndirect DrawElementsIndirect

Usage

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

License:Open Source License

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

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

License:Open Source License

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

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

License:Open Source License

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