Example usage for org.lwjgl.opengl GL43 glInvalidateTexSubImage

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

Introduction

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

Prototype

public static void glInvalidateTexSubImage(@NativeType("GLuint") int texture, @NativeType("GLint") int level,
        @NativeType("GLint") int xoffset, @NativeType("GLint") int yoffset, @NativeType("GLint") int zoffset,
        @NativeType("GLsizei") int width, @NativeType("GLsizei") int height, @NativeType("GLsizei") int depth) 

Source Link

Document

Invalidates a region of a texture image.

Usage

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

License:Open Source License

public static void glInvalidateTexSubImage(int a, int b, int c, int d, int e, int f, int g, int h) {
    GL43.glInvalidateTexSubImage(a, b, c, d, e, f, g, h);
}