List of usage examples for org.lwjgl.opengl GL11 glTexSubImage2D
public static void glTexSubImage2D(@NativeType("GLenum") int target, @NativeType("GLint") int level, @NativeType("GLint") int xoffset, @NativeType("GLint") int yoffset, @NativeType("GLsizei") int width, @NativeType("GLsizei") int height, @NativeType("GLenum") int format, @NativeType("GLenum") int type, @NativeType("void const *") double[] pixels)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glTexSubImage2D(int a, int b, int c, int d, int e, int f, int g, int h, ShortBuffer i) { GL11.glTexSubImage2D(a, b, c, d, e, f, g, h, i); }