Example usage for org.lwjgl.opengl GL11 glMapGrid2f

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

Introduction

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

Prototype

public static native void glMapGrid2f(@NativeType("GLint") int un, @NativeType("GLfloat") float u1,
        @NativeType("GLfloat") float u2, @NativeType("GLint") int vn, @NativeType("GLfloat") float v1,
        @NativeType("GLfloat") float v2);

Source Link

Document

Defines a two-dimensional grid in the map evaluator domain.

Usage

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

License:Open Source License

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