Example usage for org.lwjgl.opengl GL43 glDispatchCompute

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

Introduction

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

Prototype

public static void glDispatchCompute(@NativeType("GLuint") int num_groups_x,
        @NativeType("GLuint") int num_groups_y, @NativeType("GLuint") int num_groups_z) 

Source Link

Document

Launches one or more compute work groups.

Usage

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

License:Open Source License

public static void glDispatchCompute(int a, int b, int c) {
    GL43.glDispatchCompute(a, b, c);
}