Example usage for org.lwjgl.opengl GL11 glPixelStoref

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

Introduction

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

Prototype

public static void glPixelStoref(@NativeType("GLenum") int pname, @NativeType("GLfloat") float param) 

Source Link

Document

Float version of #glPixelStorei PixelStorei .

Usage

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

License:Open Source License

public static void glPixelStoref(int a, float b) {
    GL11.glPixelStoref(a, b);
}