List of usage examples for org.lwjgl.opengl GL40 glDrawElementsIndirect
public static void glDrawElementsIndirect(@NativeType("GLenum") int mode, @NativeType("GLenum") int type, @NativeType("void const *") int[] indirect)
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); }