List of usage examples for org.lwjgl.opengl GL14 glWindowPos3d
public static native void glWindowPos3d(@NativeType("GLdouble") double x, @NativeType("GLdouble") double y, @NativeType("GLdouble") double z);
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glWindowPos3d(double a, double b, double c) { GL14.glWindowPos3d(a, b, c); }