Example usage for org.lwjgl.opengl ARBES2Compatibility glShaderBinary

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

Introduction

In this page you can find the example usage for org.lwjgl.opengl ARBES2Compatibility 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:com.badlogic.gdx.backends.jglfw.JglfwGL20.java

License:Apache License

public void glShaderBinary(int n, IntBuffer shaders, int binaryformat, Buffer binary, int length) {
    ARBES2Compatibility.glShaderBinary(shaders, binaryformat, (ByteBuffer) binary);
}