Example usage for org.lwjgl.opengl GL41 glActiveShaderProgram

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

Introduction

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

Prototype

public static void glActiveShaderProgram(@NativeType("GLuint") int pipeline,
        @NativeType("GLuint") int program) 

Source Link

Document

Sets the active program object for a program pipeline object.

Usage

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

License:Open Source License

public static void glActiveShaderProgram(int a, int b) {
    GL41.glActiveShaderProgram(a, b);
}