Example usage for org.lwjgl.opengl GL11 glMap2f

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

Introduction

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

Prototype

public static void glMap2f(@NativeType("GLenum") int target, @NativeType("GLfloat") float u1,
        @NativeType("GLfloat") float u2, @NativeType("GLint") int ustride, @NativeType("GLint") int uorder,
        @NativeType("GLfloat") float v1, @NativeType("GLfloat") float v2, @NativeType("GLint") int vstride,
        @NativeType("GLint") int vorder, @NativeType("GLfloat const *") float[] points) 

Source Link

Document

Array version of: #glMap2f Map2f

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glMap2f(int a, float b, float c, int d, int e, float f, float g, int h, int i,
        FloatBuffer j) {/*from  www .  j a v  a 2 s .c o m*/
    GL11.glMap2f(a, b, c, d, e, f, g, h, i, j);
}