Example usage for org.lwjgl.opengl EXTSecondaryColor glSecondaryColor3ubEXT

List of usage examples for org.lwjgl.opengl EXTSecondaryColor glSecondaryColor3ubEXT

Introduction

In this page you can find the example usage for org.lwjgl.opengl EXTSecondaryColor glSecondaryColor3ubEXT.

Prototype

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

Source Link

Document

Unsigned version of #glSecondaryColor3bEXT SecondaryColor3bEXT

Usage

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glSecondaryColor3ubEXT(byte b, byte c, byte d) {
    EXTSecondaryColor.glSecondaryColor3ubEXT(b, c, d);
}