Example usage for org.lwjgl.opengl GL32 glClientWaitSync

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

Introduction

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

Prototype

@NativeType("GLenum")
public static int glClientWaitSync(@NativeType("GLsync") long sync, @NativeType("GLbitfield") int flags,
        @NativeType("GLuint64") long timeout) 

Source Link

Document

Causes the client to block and wait for a sync object to become signaled.

Usage

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

License:Open Source License

public static int glClientWaitSync(GLSync a, int b, long c) {
    return GL32.glClientWaitSync(a, b, c);
}