Example usage for org.lwjgl.opengl GL11 glDrawPixels

List of usage examples for org.lwjgl.opengl GL11 glDrawPixels

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glDrawPixels.

Prototype

public static void glDrawPixels(@NativeType("GLsizei") int width, @NativeType("GLsizei") int height,
        @NativeType("GLenum") int format, @NativeType("GLenum") int type,
        @NativeType("void const *") float[] pixels) 

Source Link

Document

Array version of: #glDrawPixels DrawPixels

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glDrawPixels(int a, int b, int c, int d, ByteBuffer e) {
    GL11.glDrawPixels(a, b, c, d, e);
}

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glDrawPixels(int a, int b, int c, int d, IntBuffer e) {
    GL11.glDrawPixels(a, b, c, d, e);
}

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glDrawPixels(int a, int b, int c, int d, ShortBuffer e) {
    GL11.glDrawPixels(a, b, c, d, e);
}

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glDrawPixels(int a, int b, int c, int d, long e) {
    GL11.glDrawPixels(a, b, c, d, e);
}