List of usage examples for org.lwjgl.opengl GL11 glMap1f
public static void glMap1f(@NativeType("GLenum") int target, @NativeType("GLfloat") float u1, @NativeType("GLfloat") float u2, @NativeType("GLint") int stride, @NativeType("GLint") int order, @NativeType("GLfloat const *") float[] points)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glMap1f(int a, float b, float c, int d, int e, FloatBuffer f) { GL11.glMap1f(a, b, c, d, e, f); }