Lines Matching defs:str
1302 void writeVectorConstructor (std::ostream& str, const tcu::Vector<float, Size>& v)
1304 str << "vec" << Size << "(";
1308 str << ", ";
1309 str << de::floatToString(v[ndx], 1);
1311 str << ")";
1315 void writeMatrixConstructor (std::ostream& str, const tcu::Matrix<float, Rows, Cols>& m)
1318 str << "mat" << Cols;
1320 str << "mat" << Cols << "x" << Rows;
1322 str << "(";
1328 str << ", ";
1329 str << de::floatToString(m(rowNdx, colNdx), 1);
1332 str << ")";
1910 m_vertShaderSource = vtx.str();
1911 m_fragShaderSource = frag.str();
1938 return op.str();