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