Example usage for org.lwjgl.opengl GL43 glGetProgramResourceLocation

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

Introduction

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

Prototype

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

Source Link

Document

Queries the location of a named resource within a program.

Usage

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

License:Open Source License

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

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

License:Open Source License

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