Example usage for org.lwjgl.opengl GL11 glGetPixelMapfv

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

Introduction

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

Prototype

public static void glGetPixelMapfv(@NativeType("GLenum") int map, @NativeType("GLfloat *") float[] data) 

Source Link

Document

Array version of: #glGetPixelMapfv GetPixelMapfv

Usage

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

License:Open Source License

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