Example usage for org.lwjgl.opengl GL14 glSecondaryColor3b

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

Introduction

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

Prototype

public static native void glSecondaryColor3b(@NativeType("GLbyte") byte red, @NativeType("GLbyte") byte green,
        @NativeType("GLbyte") byte blue);

Source Link

Document

Sets the R, G, and B components of the current secondary color.

Usage

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

License:Open Source License

public static void glSecondaryColor3b(byte a, byte b, byte c) {
    GL14.glSecondaryColor3b(a, b, c);
}