Example usage for org.lwjgl.opengl GL11 glGetTexGenf

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

Introduction

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

Prototype

@NativeType("void")
public static float glGetTexGenf(@NativeType("GLenum") int coord, @NativeType("GLenum") int pname) 

Source Link

Document

Float version of #glGetTexGeniv GetTexGeniv .

Usage

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

License:Open Source License

public static float glGetTexGenf(int a, int b) {
    return GL11.glGetTexGenf(a, b);
}