Example usage for org.lwjgl.opengl GL11 glTexCoord1d

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

Introduction

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

Prototype

public static native void glTexCoord1d(@NativeType("GLdouble") double s);

Source Link

Document

Double version of #glTexCoord1f TexCoord1f .

Usage

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

License:Open Source License

public static void glTexCoord1d(double a) {
    GL11.glTexCoord1d(a);
}