Example usage for org.lwjgl.opengl GL13 glMultiTexCoord1f

List of usage examples for org.lwjgl.opengl GL13 glMultiTexCoord1f

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL13 glMultiTexCoord1f.

Prototype

public static native void glMultiTexCoord1f(@NativeType("GLenum") int texture, @NativeType("GLfloat") float s);

Source Link

Document

Sets the current one-dimensional texture coordinate for the specified texture coordinate set.

Usage

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

License:Open Source License

public static void glMultiTexCoord1f(int a, float b) {
    GL13.glMultiTexCoord1f(a, b);
}