Example usage for org.lwjgl.opengl GL13 glCompressedTexSubImage1D

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

Introduction

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

Prototype

public static void glCompressedTexSubImage1D(@NativeType("GLenum") int target, @NativeType("GLint") int level,
        @NativeType("GLint") int xoffset, @NativeType("GLsizei") int width, @NativeType("GLenum") int format,
        @NativeType("GLsizei") int imageSize, @NativeType("void const *") long data) 

Source Link

Document

Respecifies only a subregion of an existing 1D 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 glCompressedTexSubImage1D(int a, int b, int c, int d, int e, int f, long g) {
    GL13.glCompressedTexSubImage1D(a, b, c, d, e, f, g);
}