Example usage for org.lwjgl.opengl GL11 glGetTexGeni

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

Introduction

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

Prototype

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

Source Link

Document

Returns integer information about pname for coord in data .

Usage

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

License:Open Source License

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