Example usage for org.lwjgl.opengl GL43 glGetProgramResourceLocationIndex

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

Introduction

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

Prototype

@NativeType("GLint")
public static int glGetProgramResourceLocationIndex(@NativeType("GLuint") int program,
        @NativeType("GLenum") int programInterface, @NativeType("GLchar const *") CharSequence name) 

Source Link

Document

Queries the fragment color index of a named variable within a program.

Usage

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

License:Open Source License

public static int glGetProgramResourceLocationIndex(int a, int b, ByteBuffer c) {
    return GL43.glGetProgramResourceLocationIndex(a, b, c);
}

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

License:Open Source License

public static int glGetProgramResourceLocationIndex(int a, int b, CharSequence c) {
    return GL43.glGetProgramResourceLocationIndex(a, b, c);
}