Example usage for org.lwjgl.opengl GL33 glSecondaryColorP3ui

List of usage examples for org.lwjgl.opengl GL33 glSecondaryColorP3ui

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL33 glSecondaryColorP3ui.

Prototype

public static native void glSecondaryColorP3ui(@NativeType("GLenum") int type, @NativeType("GLuint") int color);

Source Link

Document

Packed component version of GL14#glSecondaryColor3f SecondaryColor3f .

Usage

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

License:Open Source License

public static void glSecondaryColorP3ui(int a, int b) {
    GL33.glSecondaryColorP3ui(a, b);
}