Example usage for org.lwjgl.opengl GL11 glMap1d

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

Introduction

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

Prototype

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) 

Source Link

Document

Array version of: #glMap1d Map1d

Usage

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