
org.saintandreas.gl.buffers.IndexBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glamour-lwjgl Show documentation
Show all versions of glamour-lwjgl Show documentation
Class wrappers for geometry, texture, shaders, etc
The newest version!
package org.saintandreas.gl.buffers;
import static org.lwjgl.opengl.GL15.*;
public class IndexBuffer extends BaseBuffer {
public IndexBuffer() {
super(GL_ELEMENT_ARRAY_BUFFER);
}
public static void unbind() {
unbind(GL_ELEMENT_ARRAY_BUFFER);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy