Example usage for org.lwjgl.opengl GL43 glShaderStorageBlockBinding

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

Introduction

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

Prototype

public static void glShaderStorageBlockBinding(@NativeType("GLuint") int program,
        @NativeType("GLuint") int storageBlockIndex, @NativeType("GLuint") int storageBlockBinding) 

Source Link

Document

Changes an active shader storage block binding.

Usage

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

License:Open Source License

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