Example usage for org.lwjgl.opengl GL30 glIsVertexArray

List of usage examples for org.lwjgl.opengl GL30 glIsVertexArray

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glIsVertexArray.

Prototype

@NativeType("GLboolean")
public static boolean glIsVertexArray(@NativeType("GLuint") int array) 

Source Link

Document

Determines if a name corresponds to a vertex array object.

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public boolean glIsVertexArray(int array) {
    return GL30.glIsVertexArray(array);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static boolean glIsVertexArray(int array) {
    return GL30.glIsVertexArray(array);
}

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

License:Open Source License

public static boolean glIsVertexArray(int a) {
    return GL30.glIsVertexArray(a);
}