Example usage for org.lwjgl.opengl GL11 glTexCoord1f

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

Introduction

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

Prototype

public static native void glTexCoord1f(@NativeType("GLfloat") float s);

Source Link

Document

Sets the current one-dimensional texture coordinate.

Usage

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

License:Open Source License

public static void glTexCoord1f(float a) {
    GL11.glTexCoord1f(a);
}