1    // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
2
3    public static native void glGetTransformFeedbackVarying(
4        int program,
5        int index,
6        int bufsize,
7        int[] length,
8        int lengthOffset,
9        int[] size,
10        int sizeOffset,
11        int[] type,
12        int typeOffset,
13        byte[] name,
14        int nameOffset
15    );
16
17    // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
18
19    public static native void glGetTransformFeedbackVarying(
20        int program,
21        int index,
22        int bufsize,
23        java.nio.IntBuffer length,
24        java.nio.IntBuffer size,
25        java.nio.IntBuffer type,
26        byte name
27    );
28
29    // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
30
31    public static native String glGetTransformFeedbackVarying(
32        int program,
33        int index,
34        int[] size,
35        int sizeOffset,
36        int[] type,
37        int typeOffset
38    );
39
40    // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
41
42    public static native String glGetTransformFeedbackVarying(
43        int program,
44        int index,
45        java.nio.IntBuffer size,
46        java.nio.IntBuffer type
47    );
48
49