Example usage for org.lwjgl.opengl GL11 glEvalPoint2

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

Introduction

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

Prototype

public static native void glEvalPoint2(@NativeType("GLint") int i, @NativeType("GLint") int j);

Source Link

Document

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

Usage

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

License:Open Source License

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