Example usage for org.lwjgl.opengl GL40 glGetProgramStagei

List of usage examples for org.lwjgl.opengl GL40 glGetProgramStagei

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glGetProgramStagei.

Prototype

@NativeType("void")
public static int glGetProgramStagei(@NativeType("GLuint") int program, @NativeType("GLenum") int shadertype,
        @NativeType("GLenum") int pname) 

Source Link

Document

Retrieves properties of a program object corresponding to a specified shader stage.

Usage

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

License:Open Source License

public static int glGetProgramStagei(int a, int b, int c) {
    return GL40.glGetProgramStagei(a, b, c);
}