List of usage examples for org.lwjgl.opengl GL11 glNormal3b
public static native void glNormal3b(@NativeType("GLbyte") byte nx, @NativeType("GLbyte") byte ny, @NativeType("GLbyte") byte nz);
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glNormal3b(byte a, byte b, byte c) { GL11.glNormal3b(a, b, c); }