Example usage for org.lwjgl.opengl GL30 glTexParameterIi

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

Introduction

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

Prototype

public static void glTexParameterIi(@NativeType("GLenum") int target, @NativeType("GLenum") int pname,
        @NativeType("GLint const *") int param) 

Source Link

Document

Sets the integer value of a texture parameter.

Usage

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

License:Open Source License

public static void glTexParameterIi(int a, int b, int c) {
    GL30.glTexParameterIi(a, b, c);
}