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

/external/deqp/modules/gles3/functional/
H A Des3fIndexedStateQueryTests.cpp314 GLuint uniformIndices[2] = {0}; local
315 glGetUniformIndices(m_program, 2, uniformNames, uniformIndices);
324 glBindBufferBase(GL_UNIFORM_BUFFER, uniformIndices[ndx], buffers[ndx]);
331 glGetIntegeri_v(GL_UNIFORM_BUFFER_BINDING, uniformIndices[ndx], &boundBuffer);
357 GLuint uniformIndices[2] = {0}; local
358 glGetUniformIndices(m_program, 2, uniformNames, uniformIndices);
375 glBindBufferBase(GL_UNIFORM_BUFFER, uniformIndices[0], buffers[0]);
380 glBindBufferRange(GL_UNIFORM_BUFFER, uniformIndices[1], buffers[1], rangeBufferOffset, rangeBufferSize);
392 { uniformIndices[0], GL_UNIFORM_BUFFER_START, 0 },
393 { uniformIndices[
[all...]
H A Des3fShaderStateQueryTests.cpp1474 StateQueryMemoryWriteGuard<GLuint[DE_LENGTH_OF_ARRAY(uniformNames)]> uniformIndices; local
1475 glGetUniformIndices(program, DE_LENGTH_OF_ARRAY(uniformNames), uniformNames, uniformIndices);
1476 uniformIndices.verifyValidity(m_testCtx);
1481 const GLuint uniformIndex = uniformIndices[ndx];
1502 const GLuint uniformIndex = uniformIndices[ndx];
1734 StateQueryMemoryWriteGuard<GLuint[DE_LENGTH_OF_ARRAY(uniformNames)]> uniformIndices; local
1737 glGetUniformIndices(program, DE_LENGTH_OF_ARRAY(uniformNames), uniformNames, uniformIndices);
1738 uniformIndices.verifyValidity(m_testCtx);
1741 glGetActiveUniformsiv(program, DE_LENGTH_OF_ARRAY(uniformNames), uniformIndices, GL_UNIFORM_BLOCK_INDEX, uniformsBlockIndices);
1789 if ((GLuint(longlongUniformBlockUniformIndices[0]) != uniformIndices[
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniform_query.cpp80 const GLuint *uniformIndices,
99 GLuint index = uniformIndices[i];
108 GLuint index = uniformIndices[i];
78 _mesa_GetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params) argument
H A Duniforms.c568 GLuint *uniformIndices)
592 uniformIndices[i] = _mesa_get_uniform_location(ctx, shProg,
565 _mesa_GetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices) argument
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp80 const GLuint *uniformIndices,
99 GLuint index = uniformIndices[i];
108 GLuint index = uniformIndices[i];
78 _mesa_GetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params) argument
H A Duniforms.c568 GLuint *uniformIndices)
592 uniformIndices[i] = _mesa_get_uniform_location(ctx, shProg,
565 _mesa_GetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices) argument
/external/deqp/modules/gles31/functional/
H A Des31fNegativeStateApiTests.cpp560 ctx.beginSection("GL_INVALID_VALUE is generated if any value in uniformIndices is greater than or equal to the value of GL_ACTIVE_UNIFORMS for program.");
679 GLuint uniformIndices = -1; local
686 ctx.glGetUniformIndices(shader, 1, &uniformName, &uniformIndices);
692 ctx.glGetUniformIndices(invalid, 1, &uniformName, &uniformIndices);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp8185 void __stdcall glGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar* const* uniformNames, GLuint* uniformIndices) argument
8187 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLchar* const* uniformNames = 0x%0.8p, GLuint* uniformIndices = 0x%0.8p)",
8188 program, uniformCount, uniformNames, uniformIndices);
8225 uniformIndices[uniformId] = GL_INVALID_INDEX;
8232 uniformIndices[uniformId] = programBinary->getUniformIndex(uniformNames[uniformId]);
8243 void __stdcall glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint* uniformIndices, GLenum pname, GLint* params) argument
8245 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLuint* uniformIndices = 0x%0.8p, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
8246 program, uniformCount, uniformIndices, pname, params);
8302 const GLuint index = uniformIndices[uniformId];
8312 const GLuint index = uniformIndices[uniformI
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
H A Dglapitemp.h4767 KEYWORD1 void KEYWORD2 NAME(GetActiveUniformsiv)(GLuint program, GLsizei uniformCount, const GLuint * uniformIndices, GLenum pname, GLint * params) argument
4769 (void) program; (void) uniformCount; (void) uniformIndices; (void) pname; (void) params;
4770 DISPATCH(GetActiveUniformsiv, (program, uniformCount, uniformIndices, pname, params), (F, "glGetActiveUniformsiv(%d, %d, %p, 0x%x, %p);\n", program, uniformCount, (const void *) uniformIndices, pname, (const void *) params));
4779 KEYWORD1 void KEYWORD2 NAME(GetUniformIndices)(GLuint program, GLsizei uniformCount, const GLchar * const * uniformNames, GLuint * uniformIndices) argument
4781 (void) program; (void) uniformCount; (void) uniformNames; (void) uniformIndices;
4782 DISPATCH(GetUniformIndices, (program, uniformCount, uniformNames, uniformIndices), (F, "glGetUniformIndices(%d, %d, %p, %p);\n", program, uniformCount, (const void *) uniformNames, (const void *) uniformIndices));
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglapi_mapi_tmp.h802 GLAPI void APIENTRY GLAPI_PREFIX(GetActiveUniformsiv)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params);
804 GLAPI void APIENTRY GLAPI_PREFIX(GetUniformIndices)(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices);
6783 GLAPI void APIENTRY GLAPI_PREFIX(GetActiveUniformsiv)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params) argument
6787 ((void (APIENTRY *)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params)) _func)(program, uniformCount, uniformIndices, pname, params);
6797 GLAPI void APIENTRY GLAPI_PREFIX(GetUniformIndices)(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices) argument
6801 ((void (APIENTRY *)(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices)) _func)(program, uniformCount, uniformNames, uniformIndices);
H A Dglapi_mapi_tmp_shared.h601 void APIENTRY shared_dispatch_stub_587(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params);
603 void APIENTRY shared_dispatch_stub_589(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices);
4586 static void APIENTRY noopGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params) argument
4588 (void) program; (void) uniformCount; (void) uniformIndices; (void) pname; (void) params;
4599 static void APIENTRY noopGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices) argument
4601 (void) program; (void) uniformCount; (void) uniformNames; (void) uniformIndices;
16912 void APIENTRY shared_dispatch_stub_587(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params) argument
16916 ((void (APIENTRY *)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params)) _func)(program, uniformCount, uniformIndices, pname, params);
16926 void APIENTRY shared_dispatch_stub_589(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices) argument
[all...]

Completed in 457 milliseconds