Example usage for org.lwjgl.opengl GL11 glGetDouble

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

Introduction

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

Prototype

@NativeType("void")
public static double glGetDouble(@NativeType("GLenum") int pname) 

Source Link

Document

Returns the current double value of the specified state variable.

Usage

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

License:Open Source License

public static double glGetDouble(int a) {
    return GL11.glGetDouble(a);
}