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