Example usage for org.lwjgl.opengl GL14 glWindowPos3f

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

Introduction

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

Prototype

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

Source Link

Document

Float version of #glWindowPos3i WindowPos3i .

Usage

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

License:Open Source License

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