Example usage for org.lwjgl.opengl GL11 glVertex3i

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

Introduction

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

Prototype

public static native void glVertex3i(@NativeType("GLint") int x, @NativeType("GLint") int y,
        @NativeType("GLint") int z);

Source Link

Document

Integer version of #glVertex3f Vertex3f .

Usage

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

License:Open Source License

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