Home
last modified time | relevance | path

Searched refs:shader_source (Results 1 – 25 of 140) sorted by relevance

123456

/aosp_15_r20/external/deqp/external/openglcts/modules/gles31/
H A Des31cArrayOfArraysTests.cpp617 std::string shader_source; in compile_shader_and_get_compilation_result() local
627 shader_source = API::shader_version_gpu5; in compile_shader_and_get_compilation_result()
632 shader_source = API::shader_version; in compile_shader_and_get_compilation_result()
643 shader_source += preamble_cs; in compile_shader_and_get_compilation_result()
646 shader_source += preamble_gs; in compile_shader_and_get_compilation_result()
649 shader_source += preamble_tcs; in compile_shader_and_get_compilation_result()
652 shader_source += preamble_tes; in compile_shader_and_get_compilation_result()
659 shader_source += tested_snippet; in compile_shader_and_get_compilation_result()
733 const char *code_ptr = shader_source.c_str(); in compile_shader_and_get_compilation_result()
796 typename TestCaseBase<API>::TestShaderType tested_shader_type, const std::string &shader_source) in execute_negative_test() argument
[all …]
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/
H A Dgl3cCullDistanceTests.cpp1352 std::string &shader_source = shaders_configuration[n_shader_index].body; in buildPO() local
1355 shader_source = shaders_configuration[n_shader_index].shader_template; in buildPO()
1357 … CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_HEADER_DECLARATION"), in buildPO()
1369 … CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_ASSIGN_RETURN_VALUE"), in buildPO()
1394 … CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_SUM_SETTER"), in buildPO()
1397 shader_source, std::string("TEMPLATE_SUM_DIVIDER"), in buildPO()
1405 … CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_ASSIGN_RETURN_VALUE"), in buildPO()
1417 shader_source, std::string("TEMPLATE_ASSIGN_CLIP_DISTANCE"), in buildPO()
1420 shader_source, std::string("TEMPLATE_ASSIGN_CULL_DISTANCE"), in buildPO()
1427 … CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_LAYOUT_IN"), in buildPO()
[all …]
H A Dgl4cES31CompatibilityTests.cpp356 …1compatibility::ShaderFunctionalCompatibilityTest::createProgram(const struct Shader shader_source) in createProgram() argument
366 …} shader[] = {{shader_source.vertex, GL_VERTEX_SHADER, 0}, {shader_source.fragment, GL_FRAGMENT_SH… in createProgram()
H A Dgl4cES31CompatibilityTests.hpp140 bool createProgram(const struct Shader shader_source);
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/amber/
H A DvktAmberTestCase.cpp364 …programCollection.spirvAsmSources.add(shader.shader_name) << shader.shader_source << m_asm_options; in initPrograms()
374 << glu::ComputeSource(shader.shader_source) in initPrograms()
379 << glu::GeometrySource(shader.shader_source) in initPrograms()
384 << glu::FragmentSource(shader.shader_source) in initPrograms()
389 << glu::VertexSource(shader.shader_source) in initPrograms()
394 << glu::TessellationControlSource(shader.shader_source) in initPrograms()
399 << glu::TessellationEvaluationSource(shader.shader_source) in initPrograms()
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
H A Dgl_shader.cc49 const std::string& shader_source, in CompileShader() argument
56 const char* src = shader_source.c_str(); in CompileShader()
75 "\nProblem shader is:\n" + shader_source); in CompileShader()
H A Dgl_shader.h38 const std::string& shader_source,
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/gl/converters/
H A Dphwc4_to_bhwc.cc36 std::string shader_source = GetShaderHeader(workgroup_size) + R"( in Create() local
61 GlShader::CompileShader(GL_COMPUTE_SHADER, shader_source, &shader)); in Create()
H A Dbhwc_to_phwc4.cc36 std::string shader_source = GetShaderHeader(workgroup_size) + R"( in Create() local
68 GlShader::CompileShader(GL_COMPUTE_SHADER, shader_source, &shader)); in Create()
/aosp_15_r20/hardware/google/gfxstream/common/detector/
DGles.cpp106 const std::string& shader_source) { in CreateShader() argument
109 const char* const shader_source_cstr = shader_source.c_str(); in CreateShader()
DGles.h53 const std::string& shader_source);
/aosp_15_r20/external/mesa3d/src/mesa/main/
H A Dshaderapi.c2078 shader_source(struct gl_context *ctx, GLuint shaderObj, GLsizei count, in shader_source() function
2179 shader_source(ctx, shaderObj, count, string, length, true); in _mesa_ShaderSource_no_error()
2188 shader_source(ctx, shaderObj, count, string, length, false); in _mesa_ShaderSource()
3229 char *shader_source; member
3270 free(sh_incl_ht_entry->shader_source); in destroy_shader_include()
3455 (sh_incl_ht_entry == NULL || !sh_incl_ht_entry->shader_source)) in lookup_shader_include()
3477 return shader_include ? shader_include->shader_source : NULL; in _mesa_lookup_shader_include()
3556 free(sh_incl_ht_entry->shader_source); in _mesa_NamedStringARB()
3557 sh_incl_ht_entry->shader_source = string_cp; in _mesa_NamedStringARB()
3589 free(shader_include->shader_source); in _mesa_DeleteNamedStringARB()
[all …]
/aosp_15_r20/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderUtils.cpp218 std::string shader_source = m_parent_test->getShaderSource(shader); in compileShaders() local
224 << shader_source << "\n\n" in compileShaders()
230 std::string shader_source = m_parent_test->getShaderSource(shader); in compileShaders() local
233 << shader_source << "\n\n" in compileShaders()
H A DesextcTessellationShaderXFB.cpp233 std::string shader_source = getShaderSource(so_id); in createSeparableProgram() local
235 << shader_source << "\n\n" in createSeparableProgram()
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/
H A Dconverter.cc62 const std::string& shader_source) { in InitializeProgram() argument
66 GL_COMPUTE_SHADER, GetShaderHeader(workgroup_size) + shader_source, in InitializeProgram()
/aosp_15_r20/external/deqp-deps/amber/src/
Dscript_test.cc60 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()
/aosp_15_r20/external/deqp-deps/amber/include/amber/
Dshader_info.h55 std::string shader_source; member
/aosp_15_r20/external/deqp/external/openglcts/modules/glesext/
H A DesextcTestCaseBase.cpp499 std::string shader_source = getShaderSource(*it); in buildProgramVA() local
501 << shader_source << "\n\n" in buildProgramVA()
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.4.x/src/
H A Dgles2-gtf-main.txt1193 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
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.2.x/
H A Dgles2-gtf-main.txt1177 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
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.3.x/
H A Dgles2-gtf-main.txt1177 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
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.4.x/
H A Dgles2-gtf-main.txt1193 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
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.3.x/src/
H A Dgles2-gtf-main.txt1177 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
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.2.x/src/
H A Dgles2-gtf-main.txt1177 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
/aosp_15_r20/external/deqp/external/openglcts/data/gl_cts/data/mustpass/gl/khronos_mustpass/4.6.0.x/src/
H A Dgl30-gtf-main.txt1185 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

123456