Home
last modified time | relevance | path

Searched refs:vertexSource (Results 1 – 25 of 33) sorted by relevance

12

/external/deqp/external/openglcts/modules/common/
DglcShaderLibraryCase.hpp102 const char* vertexSource, const char* fragmentSource);
135 …void specializeShaders(const char* vertexSource, const char* fragmentSource, std::string& outVerte…
DglcShaderLibraryCase.cpp82 const char* vertexSource, const char* fragmentSource) in ShaderCase() argument
99 if (vertexSource && fragmentSource) in ShaderCase()
102 specializeShaders(vertexSource, fragmentSource, m_vertexSource, m_fragmentSource, valueBlock); in ShaderCase()
104 else if (vertexSource) in ShaderCase()
107 m_vertexSource = specializeVertexShader(vertexSource, valueBlock); in ShaderCase()
900 void ShaderCase::specializeShaders(const char* vertexSource, const char* fragmentSource, string& ou… in specializeShaders() argument
944 StringTemplate tmpl(vertexSource); in specializeShaders()
DglcShaderLibrary.cpp927 string vertexSource; in parseShaderCase() local
974 vertexSource = source; in parseShaderCase()
1034 DE_ASSERT(vertexSource.length() == 0); in parseShaderCase()
1047 expectResult, valueBlockList, version, vertexSource.c_str(), in parseShaderCase()
/external/webrtc/sdk/android/api/org/webrtc/
DGlShader.java41 public GlShader(String vertexSource, String fragmentSource) { in GlShader() argument
42 final int vertexShader = compileShader(GLES20.GL_VERTEX_SHADER, vertexSource); in GlShader()
/external/deqp/framework/opengl/
DgluContextInfo.cpp44 TryCompileProgram (const char* vertexSource, const char* fragmentSource) in TryCompileProgram() argument
45 : m_vertexSource (vertexSource) in TryCompileProgram()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderBuiltinVarTests.cpp233 std::ostringstream vertexSource; in initPrograms() local
234 vertexSource << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n" in initPrograms()
242 programCollection.glslSources.add("vert") << glu::VertexSource(vertexSource.str()); in initPrograms()
1457 std::ostringstream vertexSource; in initPrograms() local
1458 vertexSource << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n" in initPrograms()
1465 programCollection.glslSources.add("FragCoordMsaaVert") << glu::VertexSource(vertexSource.str()); in initPrograms()
1529 std::ostringstream vertexSource; in initPrograms() local
1530 vertexSource << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n" in initPrograms()
1538 programCollection.glslSources.add("FragDepthVert") << glu::VertexSource(vertexSource.str()); in initPrograms()
1543 std::ostringstream vertexSource; in initPrograms() local
[all …]
/external/deqp/modules/gles31/functional/
Des31fFboNoAttachmentTests.cpp71 const char* const vertexSource = "#version 310 es\n" in checkFramebufferSize() local
87 …const glu::ShaderProgram program (renderCtx, glu::makeVtxFragSources(vertexSource, fragmentSourc… in checkFramebufferSize()
178 const char* const vertexSource = "#version 310 es\n" in checkFramebufferRenderable() local
192 …const glu::ShaderProgram program (renderCtx, glu::makeVtxFragSources(vertexSource, fragmentSourc… in checkFramebufferRenderable()
Des31fShaderStateQueryTests.cpp121 …const std::string vertexSource = tcu::StringTemplate(vertexSourceTemplate).specialize(shaderAr… in iterate() local
123 …ontext.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexSource) << glu::Fragme… in iterate()
Des31fGeometryShaderTests.cpp613 std::ostringstream vertexSource; in genProgramDeclaration() local
632 vertexSource << "${GLSL_VERSION_DECL}\n" in genProgramDeclaration()
639 vertexSource << "void main (void)\n" in genProgramDeclaration()
646 vertexSource << "out highp vec4 v_geom_" << i << ";\n"; in genProgramDeclaration()
648 vertexSource << "void main (void)\n" in genProgramDeclaration()
658 vertexSource << "\tv_geom_0 = a_color;\n"; in genProgramDeclaration()
662 vertexSource << "\tv_geom_0 = a_color * 0.5;\n"; in genProgramDeclaration()
663 vertexSource << "\tv_geom_1 = a_color.zyxw * 0.5;\n"; in genProgramDeclaration()
669 vertexSource << "}\n"; in genProgramDeclaration()
775 << sglr::pdec::VertexSource(specializeShader(vertexSource.str(), contextType)) in genProgramDeclaration()
[all …]
Des31fDrawBuffersIndexedTests.cpp872 const char* const vertexSource = in genVertexSource() local
885 return glu::VertexSource(tcu::StringTemplate(vertexSource).specialize(args)); in genVertexSource()
/external/deqp/modules/gles2/functional/
Des2fReadPixelsTests.cpp80 const char* vertexSource = in render() local
93 …glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(vertexSource, fra… in render()
/external/deqp/modules/glshared/
DglsLongStressCase.hpp194 std::string vertexSource; member
206 : vertexSource (vtxShaderSource_) in ProgramContext()
DglsLongStressCase.cpp1223 …m prog(m_renderCtx, glu::makeVtxFragSources(mangleShaderNames(progCtx.vertexSource, ""), mangleSha… in init()
1288 …prog.setSources(mangleShaderNames(programContext.vertexSource, programResources.shaderNameMangling… in iterate()
/external/angle/src/libANGLE/renderer/d3d/
DDynamicHLSL.cpp684 std::string vertexSource = vertexShaderGL->getTranslatedSource(); in generateShaderLinkHLSL() local
685 angle::ReplaceSubstring(&vertexSource, std::string(MAIN_PROLOGUE_STUB_STRING), in generateShaderLinkHLSL()
687 angle::ReplaceSubstring(&vertexSource, std::string(VERTEX_OUTPUT_STUB_STRING), in generateShaderLinkHLSL()
689 vertexStream << vertexSource; in generateShaderLinkHLSL()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTests.cpp736 std::ostringstream vertexSource; in initMultisamplePrograms() local
738 vertexSource << in initMultisamplePrograms()
759 sources.glslSources.add("color_vert") << glu::VertexSource(vertexSource.str()); in initMultisamplePrograms()
767 std::ostringstream vertexSource; in initSampleShadingPrograms() local
769 vertexSource << in initSampleShadingPrograms()
787 sources.glslSources.add("color_vert") << glu::VertexSource(vertexSource.str()); in initSampleShadingPrograms()
792 static const char* vertexSource = in initSampleShadingPrograms() local
819 sources.glslSources.add("quad_vert") << glu::VertexSource(vertexSource); in initSampleShadingPrograms()
826 std::ostringstream vertexSource; in initAlphaToCoverageColorUnusedAttachmentPrograms() local
828 vertexSource << in initAlphaToCoverageColorUnusedAttachmentPrograms()
[all …]
DvktPipelineInputAssemblyTests.cpp268 std::ostringstream vertexSource; in initPrograms() local
270 vertexSource << in initPrograms()
283 sourceCollections.glslSources.add("color_vert") << glu::VertexSource(vertexSource.str()); in initPrograms()
/external/angle/src/tests/gl_tests/
DBlendFuncExtendedTest.cpp297 void setupProgramPipeline(const char *vertexSource, const char *fragmentSource) in setupProgramPipeline() argument
299 mVertexProgram = createShaderProgram(GL_VERTEX_SHADER, vertexSource); in setupProgramPipeline()
/external/deqp/modules/gles3/functional/
Des3fReadPixelsTests.cpp111 const char* vertexSource = in render() local
146 …glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(vertexSource, fra… in render()
/external/angle/src/libANGLE/renderer/gl/egl/gbm/
DDisplayGbm.cpp640 const GLchar *vertexSource = in drawWithTexture() local
673 mVertexShader = makeShader(GL_VERTEX_SHADER, vertexSource); in drawWithTexture()
/external/deqp/modules/egl/
DteglImageFormatTests.cpp90 glu::ProgramSources programSources (const string& vertexSource, const string& fragmentSource) in programSources() argument
94 sources << glu::VertexSource(vertexSource) << glu::FragmentSource(fragmentSource); in programSources()
102 Program (const glw::Functions& gl, const char* vertexSource, const char* fragmentSource) in Program() argument
103 : glu::ShaderProgram(gl, programSources(vertexSource, fragmentSource)) {} in Program()
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureTestUtil.cpp197 tcu::StringTemplate vertexSource (vertShaderTemplate); in initializePrograms() local
301 …vertex_" + std::string(getProgramName(program))) << glu::VertexSource(vertexSource.specialize(para… in initializePrograms()
/external/deqp/external/openglcts/modules/gl/
Dgl4cSparseTexture2Tests.cpp1587 std::string vertexSource = st2_vertex_drawBuffer; in UncommittedDepthStencil() local
1590 ShaderProgram program(gl, glu::makeVtxFragSources(vertexSource, fragmentSource)); in UncommittedDepthStencil()
1596 << ", vertexSource: " << vertexSource.c_str() << "\n" in UncommittedDepthStencil()
Dgl4cGlSpirvTests.cpp1674 ShaderSource vertexSource(glu::SHADERTYPE_VERTEX, m_commonVertex); in iterate() local
1676 sources << vertexSource; in iterate()
1678 vertexBinary = spirvUtils::makeSpirV(m_context.getTestContext().getLog(), vertexSource); in iterate()
/external/deqp/modules/gles2/stress/
Des2sSpecialFloatTests.cpp227 const char* const vertexSource = "attribute highp vec4 a_pos;\n" in drawTestPattern() local
257 …ontext.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexSource) << glu::Fragme… in drawTestPattern()
/external/deqp/modules/gles3/stress/
Des3sSpecialFloatTests.cpp230 const char* const vertexSource = "#version 300 es\n" in drawTestPattern() local
265 …ontext.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexSource) << glu::Fragme… in drawTestPattern()

12