Example usage for org.lwjgl.opengl GL11 glMap2d

List of usage examples for org.lwjgl.opengl GL11 glMap2d

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glMap2d.

Prototype

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) 

Source Link

Document

Array version of: #glMap2d Map2d

Usage

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);
}