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

public static void glGetTransformFeedbackVarying(@NativeType("GLuint") int program,
        @NativeType("GLuint") int index, @Nullable @NativeType("GLsizei *") int[] length,
        @NativeType("GLsizei *") int[] size, @NativeType("GLenum *") int[] type,
        @NativeType("GLchar *") ByteBuffer name) 

Source Link

Document

Array version of: #glGetTransformFeedbackVarying GetTransformFeedbackVarying

Usage

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

License:Open Source License

public static void glGetTransformFeedbackVarying(int a, int b, IntBuffer c, IntBuffer d, IntBuffer e,
        ByteBuffer f) {/*from w ww.ja  v a 2 s .c  o m*/
    GL30.glGetTransformFeedbackVarying(a, b, c, d, e, f);
}