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