Example usage for org.lwjgl.opengl GL43 glInvalidateTexImage

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

Introduction

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

Prototype

public static void glInvalidateTexImage(@NativeType("GLuint") int texture, @NativeType("GLint") int level) 

Source Link

Document

Invalidates the entirety of a texture image.

Usage

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

License:Open Source License

public static void glInvalidateTexImage(int a, int b) {
    GL43.glInvalidateTexImage(a, b);
}