Example usage for org.lwjgl.opengl GL14 glSecondaryColor3ub

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

Introduction

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

Prototype

public static native void glSecondaryColor3ub(@NativeType("GLubyte") byte red,
        @NativeType("GLubyte") byte green, @NativeType("GLubyte") byte blue);

Source Link

Document

Unsigned version of #glSecondaryColor3b SecondaryColor3b

Usage

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

License:Open Source License

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