Example usage for org.lwjgl.opengl GL43 glInvalidateBufferData

List of usage examples for org.lwjgl.opengl GL43 glInvalidateBufferData

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glInvalidateBufferData.

Prototype

public static void glInvalidateBufferData(@NativeType("GLuint") int buffer) 

Source Link

Document

Invalidates the content of a buffer object's data store.

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glInvalidateBufferData(int a) {
    GL43.glInvalidateBufferData(a);
}