List of usage examples for org.lwjgl.opengl GL11 glMap2d
public static void glMap2d(@NativeType("GLenum") int target, @NativeType("GLdouble") double u1, @NativeType("GLdouble") double u2, @NativeType("GLint") int ustride, @NativeType("GLint") int uorder, @NativeType("GLdouble") double v1, @NativeType("GLdouble") double v2, @NativeType("GLint") int vstride, @NativeType("GLint") int vorder, @NativeType("GLdouble const *") double[] points)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glMap2d(int a, double b, double c, int d, int e, double f, double g, int h, int i, DoubleBuffer j) {/*from w ww .j a va 2s . c o m*/ GL11.glMap2d(a, b, c, d, e, f, g, h, i, j); }