Example usage for org.lwjgl.opengl GL13 glCompressedTexSubImage3D

List of usage examples for org.lwjgl.opengl GL13 glCompressedTexSubImage3D

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL13 glCompressedTexSubImage3D.

Prototype

public static void glCompressedTexSubImage3D(@NativeType("GLenum") int target, @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,
        @NativeType("GLenum") int format, @NativeType("GLsizei") int imageSize,
        @NativeType("void const *") long data) 

Source Link

Document

Respecifies only a cubic subregion of an existing 3D texel array, with incoming data stored in a specific compressed image format.

Usage

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

License:Open Source License

public static void glCompressedTexSubImage3D(int a, int b, int c, int d, int e, int f, int g, int h, int i,
        int j, long k) {
    GL13.glCompressedTexSubImage3D(a, b, c, d, e, f, g, h, i, j, k);
}