Example usage for org.lwjgl.opengl GL14 glFogCoordd

List of usage examples for org.lwjgl.opengl GL14 glFogCoordd

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL14 glFogCoordd.

Prototype

public static native void glFogCoordd(@NativeType("GLdouble") double coord);

Source Link

Document

Double version of #glFogCoordf FogCoordf .

Usage

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

License:Open Source License

public static void glFogCoordd(double a) {
    GL14.glFogCoordd(a);
}