Example usage for org.lwjgl.opengl GL11 glEvalMesh1

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

Introduction

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

Prototype

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

Source Link

Document

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

Usage

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

License:Open Source License

public static void glEvalMesh1(int a, int b, int c) {
    GL11.glEvalMesh1(a, b, c);
}