List of usage examples for org.lwjgl.opengl GL44 glClearTexImage
public static void glClearTexImage(@NativeType("GLuint") int texture, @NativeType("GLint") int level, @NativeType("GLenum") int format, @NativeType("GLenum") int type, @Nullable @NativeType("void const *") double[] data)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glClearTexImage(int a, int b, int c, int d, ByteBuffer e) { GL44.glClearTexImage(a, b, c, d, e); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glClearTexImage(int a, int b, int c, int d, DoubleBuffer e) { GL44.glClearTexImage(a, b, c, d, e); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glClearTexImage(int a, int b, int c, int d, FloatBuffer e) { GL44.glClearTexImage(a, b, c, d, e); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glClearTexImage(int a, int b, int c, int d, IntBuffer e) { GL44.glClearTexImage(a, b, c, d, e); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glClearTexImage(int a, int b, int c, int d, ShortBuffer e) { GL44.glClearTexImage(a, b, c, d, e); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glClearTexImage(int a, int b, int c, int d, LongBuffer e) { GL44.glClearTexImage(a, b, c, d, e); }