Example usage for org.lwjgl.opengl GL32 glWaitSync

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

Introduction

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

Prototype

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

Source Link

Document

Causes the GL server 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 void glWaitSync(GLSync a, int b, long c) {
    GL32.glWaitSync(a, b, c);
}