Example usage for org.lwjgl.opengl GL15 glIsBuffer

List of usage examples for org.lwjgl.opengl GL15 glIsBuffer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL15 glIsBuffer.

Prototype

@NativeType("GLboolean")
public static boolean glIsBuffer(@NativeType("GLuint") int buffer) 

Source Link

Document

Determines if a name corresponds to a buffer object.

Usage

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

License:Open Source License

public static boolean glIsBuffer(int a) {
    return GL15.glIsBuffer(a);
}