Example usage for org.lwjgl.opengl GL11 glPixelMapfv

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

Introduction

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

Prototype

public static void glPixelMapfv(@NativeType("GLenum") int map, @NativeType("GLsizei") int size,
        @NativeType("GLfloat const *") long values) 

Source Link

Document

Sets a pixel map lookup table.

Usage

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

License:Open Source License

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