Lines Matching defs:str
336 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
351 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
694 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
712 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1376 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
1393 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1821 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
1840 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1864 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
1882 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1894 std::ostringstream str;
1896 str << caseDef.renderSize.x();
1897 if (caseDef.renderSize.y() > 1) str << "x" << caseDef.renderSize.y();
1898 if (caseDef.renderSize.z() > 1) str << "x" << caseDef.renderSize.z();
1900 str << "_" << caseDef.attachmentSize.x();
1902 if (caseDef.attachmentSize.y() > 1) str << "x" << caseDef.attachmentSize.y();
1903 if (caseDef.attachmentSize.z() > 1) str << "x" << caseDef.attachmentSize.z();
1904 if (caseDef.numLayers > 1) str << "_" << caseDef.numLayers;
1906 return str.str();
1911 std::ostringstream str;
1913 str << getShortImageViewTypeName (caseDef.imageType).c_str();
1914 str << "_";
1915 str << getSizeString(caseDef);
1918 str << "_ms";
1920 return str.str();