All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.saintandreas.gl.buffers.VertexBuffer Maven / Gradle / Ivy

The newest version!
package org.saintandreas.gl.buffers;

import static org.lwjgl.opengl.GL15.*;

public class VertexBuffer extends BaseBuffer {
  public VertexBuffer() {
    super(GL_ARRAY_BUFFER);
  }

  public static void unbind() {
    BaseBuffer.unbind(GL_ARRAY_BUFFER);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy