Example usage for org.lwjgl.opengl GL43 glGetProgramResourceName

List of usage examples for org.lwjgl.opengl GL43 glGetProgramResourceName

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glGetProgramResourceName.

Prototype

@NativeType("void")
public static String glGetProgramResourceName(@NativeType("GLuint") int program,
        @NativeType("GLenum") int programInterface, @NativeType("GLuint") int index,
        @NativeType("GLsizei") int bufSize) 

Source Link

Document

Queries the name of an indexed resource within a program.

Usage

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

License:Open Source License

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