List of usage examples for org.lwjgl.opengl GL30 glIsVertexArray
@NativeType("GLboolean") public static boolean glIsVertexArray(@NativeType("GLuint") int array)
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); }