Example usage for org.lwjgl.opengl GL30 glGetTexParameterIi

List of usage examples for org.lwjgl.opengl GL30 glGetTexParameterIi

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glGetTexParameterIi.

Prototype

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

Source Link

Document

Returns the integer value of a texture parameter.

Usage

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

License:Open Source License

public static int glGetTexParameterIi(int a, int b) {
    return GL30.glGetTexParameterIi(a, b);
}