2fc72d1c02
Someone fixed these in the generated code, so re-generating even with no other changes caused diffs. Better to just fix it at the source. Bug: 15028495 Change-Id: I248f9796d4e3d904c4c0dc15be5f8de231df7285
18 lines
615 B
Java
18 lines
615 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
|
|
);
|
|
|