Example usage for org.lwjgl.opengl GL15 glUnmapBuffer

List of usage examples for org.lwjgl.opengl GL15 glUnmapBuffer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL15 glUnmapBuffer.

Prototype

@NativeType("GLboolean")
public static boolean glUnmapBuffer(@NativeType("GLenum") int target) 

Source Link

Document

Relinquishes the mapping of a buffer object and invalidates the pointer to its data store.

Usage

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

License:Open Source License

public static boolean glUnmapBuffer(int a) {
    return GL15.glUnmapBuffer(a);
}