Lines Matching refs:programCollection

432 void initFrameBufferPrograms (SourceCollections& programCollection, CaseDefinition caseDef)  in initFrameBufferPrograms()  argument
436 subgroups::setFragmentShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
439 subgroups::setVertexShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
465 programCollection.add("vert") << glu::VertexSource(vertexSrc.str()); in initFrameBufferPrograms()
493 programCollection.add("geometry") << glu::GeometrySource(geometry.str()); in initFrameBufferPrograms()
523 programCollection.add("tesc") << glu::TessellationControlSource(controlSource.str()); in initFrameBufferPrograms()
524 subgroups::setTesEvalShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
549 subgroups::setTesCtrlShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
550 programCollection.add("tese") << glu::TessellationEvaluationSource(evaluationSource.str()); in initFrameBufferPrograms()
558 void initPrograms(SourceCollections& programCollection, CaseDefinition caseDef) in initPrograms() argument
591 programCollection.add("comp") << glu::ComputeSource(src.str()); in initPrograms()
620 programCollection.add("vert") << glu::VertexSource(vertex); in initPrograms()
651 programCollection.add("tesc") << glu::TessellationControlSource(tesc); in initPrograms()
678 programCollection.add("tese") << glu::TessellationEvaluationSource(tese); in initPrograms()
707 subgroups::addGeometryShadersFromTemplate(geometry, programCollection); in initPrograms()
729 programCollection.add("fragment") << glu::FragmentSource(fragment); in initPrograms()
731 subgroups::addNoSubgroupShader(programCollection); in initPrograms()