Lines Matching refs:src
339 std::ostringstream src;
340 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
355 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << buildOptions;
361 std::ostringstream src;
362 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
375 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()) << buildOptions;
381 std::ostringstream src;
382 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
406 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()) << buildOptions;
412 std::ostringstream src;
413 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
433 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str()) << buildOptions;
439 std::ostringstream src;
440 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
467 programCollection.glslSources.add("geom") << glu::GeometrySource(src.str()) << buildOptions;
472 std::ostringstream src;
473 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
485 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()) << buildOptions;