Example usage for org.lwjgl.opengl GL44 glClearTexImage

List of usage examples for org.lwjgl.opengl GL44 glClearTexImage

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL44 glClearTexImage.

Prototype

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) 

Source Link

Document

Array version of: #glClearTexImage ClearTexImage

Usage

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);
}