List of usage examples for org.lwjgl.opengl GL32 glDrawElementsInstancedBaseVertex
public static void glDrawElementsInstancedBaseVertex(@NativeType("GLenum") int mode, @NativeType("void const *") IntBuffer indices, @NativeType("GLsizei") int primcount, @NativeType("GLint") int basevertex)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glDrawElementsInstancedBaseVertex(int a, IntBuffer b, int c, int d) { GL32.glDrawElementsInstancedBaseVertex(a, b, c, d); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glDrawElementsInstancedBaseVertex(int a, ShortBuffer b, int c, int d) { GL32.glDrawElementsInstancedBaseVertex(a, b, c, d); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glDrawElementsInstancedBaseVertex(int a, ByteBuffer b, int c, int d) { GL32.glDrawElementsInstancedBaseVertex(a, b, c, d); }