List of usage examples for org.lwjgl.opengl GL11 glMapGrid2f
public static native void glMapGrid2f(@NativeType("GLint") int un, @NativeType("GLfloat") float u1, @NativeType("GLfloat") float u2, @NativeType("GLint") int vn, @NativeType("GLfloat") float v1, @NativeType("GLfloat") float v2);
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glMapGrid2f(int a, float b, float c, int d, float e, float f) { GL11.glMapGrid2f(a, b, c, d, e, f); }