Lines Matching defs:str
492 std::ostringstream str;
494 str << (isUint ? "uint" : isSint ? "int" : "float");
496 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents;
498 return str.str();
759 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
767 const std::string colorInteger = (isUint || isSint ? " * "+colorFormat+"("+colorValue.str()+")" :"");
785 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1695 std::ostringstream str;
1709 str << "_";
1711 str << description[i];
1717 str << "small";
1719 return str.str();
1730 std::ostringstream str;
1731 str << getFormatString(colorFormat);
1733 str << "_" << getFormatString(depthStencilFormat);
1734 return str.str();