Example usage for org.lwjgl.opengl GL30 glGetTransformFeedbackVarying

List of usage examples for org.lwjgl.opengl GL30 glGetTransformFeedbackVarying

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glGetTransformFeedbackVarying.

Prototype

@NativeType("void")
public static String glGetTransformFeedbackVarying(@NativeType("GLuint") int program,
        @NativeType("GLuint") int index, @NativeType("GLsizei") int bufSize,
        @NativeType("GLsizei *") IntBuffer size, @NativeType("GLenum *") IntBuffer type) 

Source Link

Document

Retrieves information about varying variables selected for transform feedback.

Usage

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

License:Open Source License

public static String glGetTransformFeedbackVarying(int a, int b, int c, IntBuffer d, IntBuffer e) {
    return GL30.glGetTransformFeedbackVarying(a, b, c, d, e);
}