Example usage for org.lwjgl.opengl GL11 glGetTexParameterf

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

Introduction

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

Prototype

@NativeType("void")
public static float glGetTexParameterf(@NativeType("GLenum") int target, @NativeType("GLenum") int pname) 

Source Link

Document

Float version of #glGetTexParameteriv GetTexParameteriv .

Usage

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

License:Open Source License

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