Example usage for org.lwjgl.opengl GL11 glGetFloat

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

Introduction

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

Prototype

@NativeType("void")
public static float glGetFloat(@NativeType("GLenum") int pname) 

Source Link

Document

Returns the current float value of the specified state variable.

Usage

From source file:playn.java.JavaGL20.java

License:Apache License

@Override
public float glGetFloat(int pname) {
    return GL11.glGetFloat(pname);
}

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

License:Open Source License

public static float glGetFloat(int a) {
    return GL11.glGetFloat(a);
}