Example usage for org.lwjgl.opengl GL43 glInvalidateBufferSubData

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

Introduction

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

Prototype

public static void glInvalidateBufferSubData(@NativeType("GLuint") int buffer,
        @NativeType("GLintptr") long offset, @NativeType("GLsizeiptr") long length) 

Source Link

Document

Invalidates a region of a buffer object's data store.

Usage

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

License:Open Source License

public static void glInvalidateBufferSubData(int a, long b, long c) {
    GL43.glInvalidateBufferSubData(a, b, c);
}