Example usage for org.lwjgl.opengl GL11 glGetTexParameteriv

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

Introduction

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

Prototype

public static void glGetTexParameteriv(@NativeType("GLenum") int target, @NativeType("GLenum") int pname,
        @NativeType("GLint *") int[] params) 

Source Link

Document

Array version of: #glGetTexParameteriv GetTexParameteriv

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java

License:Apache License

public void glGetTexParameteriv(int target, int pname, IntBuffer params) {
    GL11.glGetTexParameteriv(target, pname, params);
}