Example usage for org.lwjgl.opengl GL42 glMemoryBarrier

List of usage examples for org.lwjgl.opengl GL42 glMemoryBarrier

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL42 glMemoryBarrier.

Prototype

public static void glMemoryBarrier(@NativeType("GLbitfield") int barriers) 

Source Link

Document

Defines a barrier ordering memory transactions.

Usage

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

License:Open Source License

public static void glMemoryBarrier(int a) {
    GL42.glMemoryBarrier(a);
}