Lines Matching defs:str
648 std::ostringstream str;
650 str << (isUint ? "uint" : isSint ? "int" : "float");
652 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents;
654 return str.str();
659 std::ostringstream str;
660 str << (isUint ? "u" : isSint ? "i" : "") << "sampler2DMS" << (numLayers > 1 ? "Array" : "");
661 return str.str();
670 std::ostringstream str;
671 str << (isUint ? "u" : isSint ? "i" : "") << "vec4(";
675 str << data[i]
681 str << (i == maxIndex ? 1 : 0)
685 str << ")";
686 return str.str();
919 std::ostringstream str;
920 str << formatPart << "image2DMS" << (numLayers > 1 ? "Array" : "");
922 return str.str();
950 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
971 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1095 programCollection.glslSources.add("sample_vert") << glu::VertexSource(src.str());
1143 programCollection.glslSources.add("sample_frag") << glu::FragmentSource(src.str());
1382 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str());
1689 programCollection.glslSources.add("sample_vert") << glu::VertexSource(src.str());
1720 programCollection.glslSources.add("sample_frag") << glu::FragmentSource(src.str());
1912 std::ostringstream str;
1913 str << size.x() << "x" << size.y() << "_" << numLayers;
1914 return str.str();
1977 addFunctionCaseWithPrograms(formatGroup.get(), caseName.str(), checkSupport, initPrograms, testFunc, caseDef);
2024 addFunctionCaseWithPrograms(formatGroup.get(), caseName.str(), checkSupport, initPrograms, testFunc, caseDef);