Example usage for org.lwjgl.opengl GL11 glGetTexLevelParameterf

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

Introduction

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

Prototype

@NativeType("void")
public static float glGetTexLevelParameterf(@NativeType("GLenum") int target, @NativeType("GLint") int level,
        @NativeType("GLenum") int pname) 

Source Link

Document

Float version of #glGetTexLevelParameteriv GetTexLevelParameteriv .

Usage

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

License:Open Source License

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