Searched defs:uniformIndices (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetUniformIndices.java1 // C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
6 int[] uniformIndices,
10 // C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
15 java.nio.IntBuffer uniformIndices
3 glGetUniformIndices( int program, String[] uniformNames, int[] uniformIndices, int uniformIndicesOffset ) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp3214 /* void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices ) */
3250 _exceptionMessage = "uniformIndices == null";
3262 _exceptionMessage = "not enough space in uniformIndices";
3290 /* void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices ) */
3316 _exceptionMessage = "uniformIndices == null";
3344 _exceptionMessage = "not enough space in uniformIndices";
3368 /* void glGetActiveUniformsiv ( GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params ) */
3377 GLuint *uniformIndices = (GLuint *) 0; local
3385 _exceptionMessage = "uniformIndices == null";
3397 uniformIndices
3447 GLuint *uniformIndices = (GLuint *) 0; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java1248 // C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
1253 int[] uniformIndices,
1257 // C function void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
1262 java.nio.IntBuffer uniformIndices
1265 // C function void glGetActiveUniformsiv ( GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params )
1270 int[] uniformIndices,
1277 // C function void glGetActiveUniformsiv ( GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params )
1282 java.nio.IntBuffer uniformIndices,
1250 glGetUniformIndices( int program, String[] uniformNames, int[] uniformIndices, int uniformIndicesOffset ) argument
1267 glGetActiveUniformsiv( int program, int uniformCount, int[] uniformIndices, int uniformIndicesOffset, int pname, int[] params, int paramsOffset ) argument
1279 glGetActiveUniformsiv( int program, int uniformCount, java.nio.IntBuffer uniformIndices, int pname, java.nio.IntBuffer params ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp8576 void GLTrace_glGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar *const* uniformNames, GLuint * uniformIndices) { argument
8600 // copy argument uniformIndices
8604 arg_uniformIndices->add_int64value((uintptr_t)uniformIndices);
8609 glContext->hooks->gl.glGetUniformIndices(program, uniformCount, uniformNames, uniformIndices);
8615 (void *) uniformIndices,
8624 void GLTrace_glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint * uniformIndices, GLenum pname, GLint * params) { argument
8642 // copy argument uniformIndices
8646 arg_uniformIndices->add_int64value((uintptr_t)uniformIndices);
8663 glContext->hooks->gl.glGetActiveUniformsiv(program, uniformCount, uniformIndices, pname, params);
8668 (void *) uniformIndices,
[all...]

Completed in 953 milliseconds