Example usage for org.lwjgl.opengl GL15 glIsQuery

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

Introduction

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

Prototype

@NativeType("GLboolean")
public static boolean glIsQuery(@NativeType("GLuint") int id) 

Source Link

Document

Determine if a name corresponds to a query object.

Usage

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

License:Apache License

@Override
public boolean glIsQuery(int id) {
    return GL15.glIsQuery(id);
}

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

License:Apache License

public static boolean glIsQuery(int id) {
    return GL15.glIsQuery(id);
}

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

License:Open Source License

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