Example usage for org.lwjgl.opengl GL11 glNormal3i

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

Introduction

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

Prototype

public static native void glNormal3i(@NativeType("GLint") int nx, @NativeType("GLint") int ny,
        @NativeType("GLint") int nz);

Source Link

Document

Integer version of #glNormal3f Normal3f .

Usage

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

License:Open Source License

public static void glNormal3i(int a, int b, int c) {
    GL11.glNormal3i(a, b, c);
}