/external/deqp/external/openglcts/modules/gles31/ |
D | es31cArrayOfArraysTests.cpp | 610 std::string shader_source; in compile_shader_and_get_compilation_result() local 620 shader_source = API::shader_version_gpu5; in compile_shader_and_get_compilation_result() 625 shader_source = API::shader_version; in compile_shader_and_get_compilation_result() 636 shader_source += preamble_cs; in compile_shader_and_get_compilation_result() 639 shader_source += preamble_gs; in compile_shader_and_get_compilation_result() 642 shader_source += preamble_tcs; in compile_shader_and_get_compilation_result() 645 shader_source += preamble_tes; in compile_shader_and_get_compilation_result() 652 shader_source += tested_snippet; in compile_shader_and_get_compilation_result() 726 const char* code_ptr = shader_source.c_str(); in compile_shader_and_get_compilation_result() 789 typename TestCaseBase<API>::TestShaderType tested_shader_type, const std::string& shader_source) in execute_negative_test() argument [all …]
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl3cCullDistanceTests.cpp | 1329 std::string& shader_source = shaders_configuration[n_shader_index].body; in buildPO() local 1332 shader_source = shaders_configuration[n_shader_index].shader_template; in buildPO() 1334 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_HEADER_DECLARATION"), in buildPO() 1346 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_ASSIGN_RETURN_VALUE"), in buildPO() 1371 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_SUM_SETTER"), in buildPO() 1374 shader_source, std::string("TEMPLATE_SUM_DIVIDER"), in buildPO() 1382 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_ASSIGN_RETURN_VALUE"), in buildPO() 1394 shader_source, std::string("TEMPLATE_ASSIGN_CLIP_DISTANCE"), in buildPO() 1397 shader_source, std::string("TEMPLATE_ASSIGN_CULL_DISTANCE"), in buildPO() 1404 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_LAYOUT_IN"), in buildPO() [all …]
|
D | gl4cES31CompatibilityTests.cpp | 354 …1compatibility::ShaderFunctionalCompatibilityTest::createProgram(const struct Shader shader_source) in createProgram() argument 364 …} shader[] = { { shader_source.vertex, GL_VERTEX_SHADER, 0 }, { shader_source.fragment, GL_FRAGMEN… in createProgram()
|
D | gl4cES31CompatibilityTests.hpp | 140 bool createProgram(const struct Shader shader_source);
|
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/ |
D | gl_shader.cc | 46 const std::string& shader_source, in CompileShader() argument 53 const char* src = shader_source.c_str(); in CompileShader() 72 "\nProblem shader is:\n" + shader_source); in CompileShader()
|
D | gl_shader.h | 37 const std::string& shader_source,
|
/external/deqp/external/vulkancts/modules/vulkan/amber/ |
D | vktAmberTestCase.cpp | 355 …programCollection.spirvAsmSources.add(shader.shader_name) << shader.shader_source << m_asm_options; in initPrograms() 365 << glu::ComputeSource(shader.shader_source) in initPrograms() 370 << glu::GeometrySource(shader.shader_source) in initPrograms() 375 << glu::FragmentSource(shader.shader_source) in initPrograms() 380 << glu::VertexSource(shader.shader_source) in initPrograms() 385 << glu::TessellationControlSource(shader.shader_source) in initPrograms() 390 << glu::TessellationEvaluationSource(shader.shader_source) in initPrograms()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/converters/ |
D | phwc4_to_bhwc.cc | 36 std::string shader_source = GetShaderHeader(workgroup_size) + R"( in Create() local 61 GlShader::CompileShader(GL_COMPUTE_SHADER, shader_source, &shader)); in Create()
|
D | bhwc_to_phwc4.cc | 36 std::string shader_source = GetShaderHeader(workgroup_size) + R"( in Create() local 68 GlShader::CompileShader(GL_COMPUTE_SHADER, shader_source, &shader)); in Create()
|
/external/deqp-deps/amber/include/amber/ |
D | shader_info.h | 54 std::string shader_source; member
|
/external/mesa3d/src/mesa/main/ |
D | shaderapi.c | 2037 shader_source(struct gl_context *ctx, GLuint shaderObj, GLsizei count, in shader_source() function 2130 shader_source(ctx, shaderObj, count, string, length, true); in _mesa_ShaderSource_no_error() 2139 shader_source(ctx, shaderObj, count, string, length, false); in _mesa_ShaderSource() 3194 char *shader_source; member 3235 free(sh_incl_ht_entry->shader_source); in destroy_shader_include() 3420 (sh_incl_ht_entry == NULL || !sh_incl_ht_entry->shader_source)) in lookup_shader_include() 3442 return shader_include ? shader_include->shader_source : NULL; in _mesa_lookup_shader_include() 3520 free(sh_incl_ht_entry->shader_source); in _mesa_NamedStringARB() 3521 sh_incl_ht_entry->shader_source = string_cp; in _mesa_NamedStringARB() 3553 free(shader_include->shader_source); in _mesa_DeleteNamedStringARB() [all …]
|
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
D | esextcTessellationShaderUtils.cpp | 213 std::string shader_source = m_parent_test->getShaderSource(shader); in compileShaders() local 219 << shader_source << "\n\n" in compileShaders() 225 std::string shader_source = m_parent_test->getShaderSource(shader); in compileShaders() local 228 << shader_source << "\n\n" in compileShaders()
|
D | esextcTessellationShaderXFB.cpp | 233 std::string shader_source = getShaderSource(so_id); in createSeparableProgram() local 235 << shader_source << "\n\n" in createSeparableProgram()
|
/external/ComputeLibrary/src/core/GLES_COMPUTE/ |
D | GCKernelLibrary.cpp | 417 std::string GCKernelLibrary::preprocess_shader(const std::string &shader_source) const in preprocess_shader() 484 return cs_parser(shader_source, ParserStage::FIRST, 0); in preprocess_shader()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/ |
D | converter.cc | 57 const std::string& shader_source) { in InitializeProgram() argument 61 GL_COMPUTE_SHADER, GetShaderHeader(workgroup_size) + shader_source, in InitializeProgram()
|
/external/ComputeLibrary/arm_compute/core/GLES_COMPUTE/ |
D | GCKernelLibrary.h | 245 std::string preprocess_shader(const std::string &shader_source) const;
|
/external/deqp-deps/amber/src/ |
D | script_test.cc | 60 EXPECT_EQ("This is my shader data", info[0].shader_source); in TEST_F() 68 EXPECT_EQ("More shader data", info[1].shader_source); in TEST_F()
|
/external/deqp/external/openglcts/modules/glesext/ |
D | esextcTestCaseBase.cpp | 489 std::string shader_source = getShaderSource(*it); in buildProgramVA() local 491 << shader_source << "\n\n" in buildProgramVA()
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.3.x/ |
D | gles2-gtf-master.txt | 1177 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilevert_shadersource 1178 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1179 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilefrag_shadersource 1180 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1181 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_invalidshaderhandle 1182 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_programhandle
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.4.x/src/ |
D | gles2-gtf-master.txt | 1193 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilevert_shadersource 1194 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1195 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilefrag_shadersource 1196 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1197 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_invalidshaderhandle 1198 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_programhandle
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.3.x/src/ |
D | gles2-gtf-master.txt | 1177 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilevert_shadersource 1178 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1179 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilefrag_shadersource 1180 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1181 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_invalidshaderhandle 1182 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_programhandle
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.4.x/ |
D | gles2-gtf-master.txt | 1193 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilevert_shadersource 1194 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1195 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilefrag_shadersource 1196 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1197 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_invalidshaderhandle 1198 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_programhandle
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.2.x/ |
D | gles2-gtf-master.txt | 1177 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilevert_shadersource 1178 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1179 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilefrag_shadersource 1180 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1181 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_invalidshaderhandle 1182 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_programhandle
|
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.2.x/src/ |
D | gles2-gtf-master.txt | 1177 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilevert_shadersource 1178 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1179 GTF-GLES2.gtf.GL2Tests.shader_source.successfulcompilefrag_shadersource 1180 GTF-GLES2.gtf.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1181 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_invalidshaderhandle 1182 GTF-GLES2.gtf.GL2Tests.shader_source.shadersource_programhandle
|
/external/deqp/external/openglcts/data/mustpass/gl/khronos_mustpass/4.6.0.x/src/ |
D | gl30-gtf-master.txt | 1185 GTF-GL30.gtf21.GL2Tests.shader_source.successfulcompilevert_shadersource 1186 GTF-GL30.gtf21.GL2Tests.shader_source.unsuccessfulcompilevert_shadersource 1187 GTF-GL30.gtf21.GL2Tests.shader_source.successfulcompilefrag_shadersource 1188 GTF-GL30.gtf21.GL2Tests.shader_source.unsuccessfulcompilefrag_shadersource 1189 GTF-GL30.gtf21.GL2Tests.shader_source.shadersource_invalidshaderhandle 1190 GTF-GL30.gtf21.GL2Tests.shader_source.shadersource_programhandle
|