Example usage for org.lwjgl.opengl GL32 glIsSync

List of usage examples for org.lwjgl.opengl GL32 glIsSync

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL32 glIsSync.

Prototype

@NativeType("GLboolean")
public static boolean glIsSync(@NativeType("GLsync") long sync) 

Source Link

Document

Determines if a name corresponds to a sync object.

Usage

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

License:Open Source License

public static boolean glIsSync(GLSync a) {
    return GL32.glIsSync(a);
}