27c86b9623
Bug: 8566953 Change-Id: Ic8bcd03e8d41a81f48d603f67ce2046a4afa1561
18 lines
606 B
Java
18 lines
606 B
Java
// C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
|
|
|
|
public static native void glGetUniformIndices(
|
|
int program,
|
|
String[] uniformNames,
|
|
int[] uniformIndices,
|
|
int uniformIndicesOffset
|
|
);
|
|
|
|
// 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
|
|
);
|
|
|