Example usage for org.lwjgl.opengl GL14 glWindowPos3i

List of usage examples for org.lwjgl.opengl GL14 glWindowPos3i

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL14 glWindowPos3i.

Prototype

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

Source Link

Document

Alternate way to set the current raster position.

Usage

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

License:Open Source License

public static void glWindowPos3i(int a, int b, int c) {
    GL14.glWindowPos3i(a, b, c);
}