Example usage for org.lwjgl.opengl GL41 glShaderBinary

List of usage examples for org.lwjgl.opengl GL41 glShaderBinary

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL41 glShaderBinary.

Prototype

public static void glShaderBinary(@NativeType("GLuint const *") int[] shaders,
        @NativeType("GLenum") int binaryformat, @NativeType("void const *") ByteBuffer binary) 

Source Link

Document

Array version of: #glShaderBinary ShaderBinary

Usage

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

License:Open Source License

public static void glShaderBinary(IntBuffer a, int b, ByteBuffer c) {
    GL41.glShaderBinary(a, b, c);
}