Example usage for org.lwjgl.opengl GL43 glDispatchComputeIndirect

List of usage examples for org.lwjgl.opengl GL43 glDispatchComputeIndirect

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glDispatchComputeIndirect.

Prototype

public static void glDispatchComputeIndirect(@NativeType("GLintptr") long indirect) 

Source Link

Document

Launches one or more compute work groups using parameters stored in a buffer.

Usage

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

License:Open Source License

public static void glDispatchComputeIndirect(long a) {
    GL43.glDispatchComputeIndirect(a);
}