Example usage for org.lwjgl.opengl GL33 glGetFragDataIndex

List of usage examples for org.lwjgl.opengl GL33 glGetFragDataIndex

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL33 glGetFragDataIndex.

Prototype

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

Source Link

Document

Queries the bindings of color indices to user-defined varying out variables.

Usage

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

License:Open Source License

public static int glGetFragDataIndex(int a, CharSequence b) {
    return GL33.glGetFragDataIndex(a, b);
}

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

License:Open Source License

public static int glGetFragDataIndex(int a, ByteBuffer b) {
    return GL33.glGetFragDataIndex(a, b);
}