Example usage for org.lwjgl.opengl GL31 glGetActiveUniformName

List of usage examples for org.lwjgl.opengl GL31 glGetActiveUniformName

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL31 glGetActiveUniformName.

Prototype

@NativeType("void")
public static String glGetActiveUniformName(@NativeType("GLuint") int program,
        @NativeType("GLuint") int uniformIndex, @NativeType("GLsizei") int bufSize) 

Source Link

Document

Queries the name of an active uniform.

Usage

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

License:Open Source License

public static String glGetActiveUniformName(int a, int b, int c) {
    return GL31.glGetActiveUniformName(a, b, c);
}