Lines Matching refs:src
392 std::ostringstream src;
393 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
399 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
404 std::ostringstream src;
405 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
420 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str());
427 std::ostringstream src;
428 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES) << "\n"
431 src << "#extension GL_EXT_tessellation_point_size : require\n";
432 src << "\n"
448 src << " gl_PointSize = 1.0f;\n";
449 src << "}\n";
452 programCollection.glslSources.add(tese.c_str()) << glu::TessellationEvaluationSource(src.str());
459 std::ostringstream src;
460 src << "void main (void)\n"
464 programCollection.hlslSources.add("vert") << glu::VertexSource(src.str());
469 std::ostringstream src;
470 src << "struct HS_CONSTANT_OUT\n"
497 programCollection.hlslSources.add("tesc") << glu::TessellationControlSource(src.str());
502 std::ostringstream src;
504 src << "RWStructuredBuffer <float> tessCoord : register(b1);\n"
514 programCollection.hlslSources.add("tese") << glu::TessellationEvaluationSource(src.str());
515 programCollection.hlslSources.add("tese_point_size") << glu::TessellationEvaluationSource(src.str());