Example usage for org.lwjgl.opengl GL41 glUseProgramStages

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

Introduction

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

Prototype

public static void glUseProgramStages(@NativeType("GLuint") int pipeline, @NativeType("GLbitfield") int stages,
        @NativeType("GLuint") int program) 

Source Link

Document

Binds stages of a program object to a program pipeline.

Usage

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

License:Open Source License

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