Example usage for org.lwjgl.opengl GL11 glEvalPoint1

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

Introduction

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

Prototype

public static native void glEvalPoint1(@NativeType("GLint") int i);

Source Link

Document

Carries out an evalutation of a single point on the one-dimensional map grid.

Usage

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

License:Open Source License

public static void glEvalPoint1(int a) {
    GL11.glEvalPoint1(a);
}