Example usage for org.lwjgl.opengl GL11 glGetTexParameterfv

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

Introduction

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

Prototype

public static void glGetTexParameterfv(@NativeType("GLenum") int target, @NativeType("GLenum") int pname,
        @NativeType("GLfloat *") float[] params) 

Source Link

Document

Array version of: #glGetTexParameterfv GetTexParameterfv

Usage

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

License:Apache License

public void glGetTexParameterfv(int target, int pname, FloatBuffer params) {
    GL11.glGetTexParameterfv(target, pname, params);
}