Example usage for org.lwjgl.opengl GL43 glMultiDrawElementsIndirect

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

Introduction

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

Prototype

public static void glMultiDrawElementsIndirect(@NativeType("GLenum") int mode, @NativeType("GLenum") int type,
        @NativeType("void const *") int[] indirect, @NativeType("GLsizei") int drawcount,
        @NativeType("GLsizei") int stride) 

Source Link

Document

Array version of: #glMultiDrawElementsIndirect MultiDrawElementsIndirect

Usage

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

License:Open Source License

public static void glMultiDrawElementsIndirect(int a, int b, ByteBuffer c, int d, int e) {
    GL43.glMultiDrawElementsIndirect(a, b, c, d, e);
}

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

License:Open Source License

public static void glMultiDrawElementsIndirect(int a, int b, long c, int d, int e) {
    GL43.glMultiDrawElementsIndirect(a, b, c, d, e);
}

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

License:Open Source License

public static void glMultiDrawElementsIndirect(int a, int b, IntBuffer c, int d, int e) {
    GL43.glMultiDrawElementsIndirect(a, b, c, d, e);
}