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