Example usage for org.lwjgl.opengl GL11 glGetTexGend

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

Introduction

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

Prototype

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

Source Link

Document

Double version of #glGetTexGeniv GetTexGeniv .

Usage

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

License:Open Source License

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