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