Example usage for org.lwjgl.opengl GL14 glWindowPos2f

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

Introduction

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

Prototype

public static native void glWindowPos2f(@NativeType("GLfloat") float x, @NativeType("GLfloat") float y);

Source Link

Document

Float version of #glWindowPos2i WindowPos2i .

Usage

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

License:Open Source License

public static void glWindowPos2f(float a, float b) {
    GL14.glWindowPos2f(a, b);
}