Example usage for org.lwjgl.opengl GL11 glMap1f

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

Introduction

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

Prototype

public static void glMap1f(@NativeType("GLenum") int target, @NativeType("GLfloat") float u1,
        @NativeType("GLfloat") float u2, @NativeType("GLint") int stride, @NativeType("GLint") int order,
        @NativeType("GLfloat const *") float[] points) 

Source Link

Document

Array version of: #glMap1f Map1f

Usage

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

License:Open Source License

public static void glMap1f(int a, float b, float c, int d, int e, FloatBuffer f) {
    GL11.glMap1f(a, b, c, d, e, f);
}