2014-05-18 22:31:54 +00:00
|
|
|
// C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
|
2013-04-10 16:26:48 +00:00
|
|
|
|
2014-05-18 22:31:54 +00:00
|
|
|
public static native void glGetUniformIndices(
|
2013-04-10 16:26:48 +00:00
|
|
|
int program,
|
|
|
|
String[] uniformNames,
|
|
|
|
int[] uniformIndices,
|
|
|
|
int uniformIndicesOffset
|
2014-05-18 22:31:54 +00:00
|
|
|
);
|
2013-04-10 16:26:48 +00:00
|
|
|
|
|
|
|
// C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
|
|
|
|
|
|
|
|
public static native void glGetUniformIndices(
|
|
|
|
int program,
|
|
|
|
String[] uniformNames,
|
|
|
|
java.nio.IntBuffer uniformIndices
|
|
|
|
);
|
|
|
|
|