Lines Matching refs:src
235 std::ostringstream src;
236 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
242 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
247 std::ostringstream src;
248 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
264 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str());
269 std::ostringstream src;
270 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
281 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(src.str());
286 std::ostringstream src;
287 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
296 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
303 std::ostringstream src;
304 src << "void main (void)\n"
308 programCollection.hlslSources.add("vert") << glu::VertexSource(src.str());
313 std::ostringstream src;
314 src << "struct HS_CONSTANT_OUT\n"
341 programCollection.hlslSources.add("tesc") << glu::TessellationControlSource(src.str());
346 std::ostringstream src;
348 src << "float4 main(" << (m_primitiveType == TESSPRIMITIVETYPE_TRIANGLES ? "float3" : "float2") << " tessCoords : SV_DOMAINLOCATION) : SV_POSITION\n"
353 programCollection.hlslSources.add("tese") << glu::TessellationEvaluationSource(src.str());
358 std::ostringstream src;
359 src << "float4 main (void) : COLOR0\n"
364 programCollection.hlslSources.add("frag") << glu::FragmentSource(src.str());