Lines Matching defs:src
130 std::ostringstream src;
131 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
143 collection.glslSources.add("vert") << glu::VertexSource(src.str());
147 std::ostringstream src;
148 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
154 collection.glslSources.add("frag") << glu::FragmentSource(src.str());
158 std::ostringstream src;
159 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
169 collection.glslSources.add("tesc") << glu::TessellationControlSource(src.str());
173 std::ostringstream src;
174 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
186 collection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str());
190 std::ostringstream src;
191 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
205 collection.glslSources.add("tesc2") << glu::TessellationControlSource(src.str());
209 std::ostringstream src;
210 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
221 src << " fragColor = vec3(gl_in[3].gl_Position.xyz);";
223 src << " fragColor = vec3(1.0, 0.0, 1.0);";
225 src << "}\n";
226 collection.glslSources.add("tese2") << glu::TessellationEvaluationSource(src.str());