Example usage for org.lwjgl.opengl GL14 glSecondaryColor3f

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

Introduction

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

Prototype

public static native void glSecondaryColor3f(@NativeType("GLfloat") float red,
        @NativeType("GLfloat") float green, @NativeType("GLfloat") float blue);

Source Link

Document

Float version of #glSecondaryColor3b SecondaryColor3b

Usage

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

License:Open Source License

public static void glSecondaryColor3f(float a, float b, float c) {
    GL14.glSecondaryColor3f(a, b, c);
}