Example usage for org.lwjgl.opengl GL14 glWindowPos2i

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

Introduction

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

Prototype

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

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 glWindowPos2i(int a, int b) {
    GL14.glWindowPos2i(a, b);
}