List of usage examples for org.lwjgl.opengl GL14 glSecondaryColor3b
public static native void glSecondaryColor3b(@NativeType("GLbyte") byte red, @NativeType("GLbyte") byte green, @NativeType("GLbyte") byte blue);
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); }