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