• Home
  • Raw
  • Download

Lines Matching refs:programCollection

240 void initFrameBufferPrograms(SourceCollections& programCollection, CaseDefinition caseDef)  in initFrameBufferPrograms()  argument
242 subgroups::setFragmentShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
245 subgroups::setVertexShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
264 programCollection.add("vert") << glu::VertexSource(vertex.str()); in initFrameBufferPrograms()
284 programCollection.add("geometry") << glu::GeometrySource(geometry.str()); in initFrameBufferPrograms()
307 programCollection.add("tesc") << glu::TessellationControlSource(controlSource.str()); in initFrameBufferPrograms()
308 subgroups::setTesEvalShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
324 subgroups::setTesCtrlShaderFrameBuffer(programCollection); in initFrameBufferPrograms()
325 programCollection.add("tese") << glu::TessellationEvaluationSource(evaluationSource.str()); in initFrameBufferPrograms()
333 void initPrograms(SourceCollections& programCollection, CaseDefinition caseDef) in initPrograms() argument
359 programCollection.add("comp") << glu::ComputeSource(src.str()); in initPrograms()
449 subgroups::addNoSubgroupShader(programCollection); in initPrograms()
451 programCollection.add("vert") << glu::VertexSource(vertex); in initPrograms()
452 programCollection.add("tesc") << glu::TessellationControlSource(tesc); in initPrograms()
453 programCollection.add("tese") << glu::TessellationEvaluationSource(tese); in initPrograms()
454 subgroups::addGeometryShadersFromTemplate(geometry, programCollection); in initPrograms()
455 programCollection.add("fragment") << glu::FragmentSource(fragment); in initPrograms()