Example usage for org.lwjgl.opengl GL11 glNormal3b

List of usage examples for org.lwjgl.opengl GL11 glNormal3b

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glNormal3b.

Prototype

public static native void glNormal3b(@NativeType("GLbyte") byte nx, @NativeType("GLbyte") byte ny,
        @NativeType("GLbyte") byte nz);

Source Link

Document

Byte version of #glNormal3f Normal3f .

Usage

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);
}