Example usage for org.lwjgl.opengl GL11 glGetTexEnvi

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

Introduction

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

Prototype

@NativeType("void")
public static int glGetTexEnvi(@NativeType("GLenum") int env, @NativeType("GLenum") int pname) 

Source Link

Document

Returns integer information about pname for env in data .

Usage

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

License:Open Source License

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