Lines Matching defs:src
3813 std::ostringstream src;
3814 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
3828 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
3833 std::ostringstream src;
3834 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
3839 src << "layout(location = " << ndx << ") out highp vec4 fsColor" << ndx << ";\n";
3841 src << "\n"
3847 src << " color.z = 0.15f * " << ndx << ".0f;\n"
3850 src << "}\n";
3851 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());