Example usage for org.lwjgl.opengl GL11 glVertex4i

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

Introduction

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

Prototype

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

Source Link

Document

Integer version of #glVertex4f Vertex4f .

Usage

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

License:Open Source License

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