Example usage for org.lwjgl.opengl GL11 glEvalMesh2

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

Introduction

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

Prototype

public static native void glEvalMesh2(@NativeType("GLenum") int mode, @NativeType("GLint") int i1,
        @NativeType("GLint") int i2, @NativeType("GLint") int j1, @NativeType("GLint") int j2);

Source Link

Document

Carries out an evaluation on a rectangular subset of the two-dimensional map grid.

Usage

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

License:Open Source License

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