Example usage for org.lwjgl.opengl GL32 glFenceSync

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

Introduction

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

Prototype

@NativeType("GLsync")
public static long glFenceSync(@NativeType("GLenum") int condition, @NativeType("GLbitfield") int flags) 

Source Link

Document

Creates a new sync object and inserts it into the GL command stream.

Usage

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

License:Open Source License

public static GLSync glFenceSync(int a, int b) {
    return GL32.glFenceSync(a, b);
}