Example usage for org.lwjgl.opengl GL40 glGetActiveSubroutineName

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

Introduction

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

Prototype

@NativeType("void")
public static String glGetActiveSubroutineName(@NativeType("GLuint") int program,
        @NativeType("GLenum") int shadertype, @NativeType("GLuint") int index,
        @NativeType("GLsizei") int bufsize) 

Source Link

Document

Queries the name of an active shader subroutine.

Usage

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

License:Open Source License

public static String glGetActiveSubroutineName(int a, int b, int c, int d) {
    return GL40.glGetActiveSubroutineName(a, b, c, d);
}