Example usage for org.lwjgl.opengl GL11 glIsList

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

Introduction

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

Prototype

@NativeType("GLboolean")
public static native boolean glIsList(@NativeType("GLuint") int list);

Source Link

Document

Returns true if the list is the index of some display list.

Usage

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

License:Open Source License

public static boolean glIsList(int a) {
    return GL11.glIsList(a);
}