Example usage for org.lwjgl.opengl GL13 glMultiTexCoord3f

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

Introduction

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

Prototype

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

Source Link

Document

Sets the current three-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 glMultiTexCoord3f(int a, float b, float c, float d) {
    GL13.glMultiTexCoord3f(a, b, c, d);
}