List of usage examples for org.lwjgl.opengl GL13 glCompressedTexSubImage3D
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)
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); }