Lines Matching defs:str
150 std::ostringstream str;
151 str << "samples_" << static_cast<deUint32>(sampleCount);
152 return str.str();
315 std::ostringstream str;
316 str << "Pixel(" << gridX << ", " << gridY <<")\n";
320 str.write(&buffer[width * lineNdx], width);
321 str << "\n";
324 log << tcu::TestLog::Message << str.str() << tcu::TestLog::EndMessage;
1364 std::ostringstream str;
1365 str << "layout(set = 0, binding = 0, std430) readonly buffer SampleData {\n" // make sure this matches SampleDataSSBO definition
1372 return str.str();
1393 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
1416 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1440 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
1466 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
1993 std::ostringstream str;
1995 if ((flags & TEST_OPTION_SAME_PATTERN_BIT) != 0) str << (str.tellp() > 0 ? "_" : "") << "same_pattern";
1996 if ((flags & TEST_OPTION_DYNAMIC_STATE_BIT) != 0) str << (str.tellp() > 0 ? "_" : "") << "dynamic";
1997 if ((flags & TEST_OPTION_SECONDARY_COMMAND_BUFFER_BIT) != 0) str << (str.tellp() > 0 ? "_" : "") << "secondary_cmd_buf";
1998 if ((flags & TEST_OPTION_GENERAL_LAYOUT_BIT) != 0) str << (str.tellp() > 0 ? "_" : "") << "general_layout";
1999 if ((flags & TEST_OPTION_WAIT_EVENTS_BIT) != 0) str << (str.tellp() > 0 ? "_" : "") << "event";
2001 return str.str();
2032 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
2048 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
2229 << tcu::TestLog::Message << msg.str() << tcu::TestLog::EndMessage;
3269 addInstanceTestCaseWithPrograms<DrawTest>(samplesGroup.get(), caseName.str().c_str(), checkSupportDrawTests, initPrograms, params);