MCPcopy Create free account
hub / github.com/GameTechDev/PresentMon / WriteRunToCsv

Function WriteRunToCsv

IntelPresentMon/SampleClient/PacedPlayback.cpp:35–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35void WriteRunToCsv(
36 const std::string& csvFilePath,
37 const std::vector<std::string>& header,
38 const std::vector<std::vector<double>>& runRows)
39{
40 std::ofstream csvStream{ csvFilePath };
41 auto csvWriter = csv::make_csv_writer(csvStream);
42 csvWriter << header;
43 for (auto& row : runRows) {
44 csvWriter << row;
45 }
46}
47
48class BlobReader
49{

Callers 1

PacedPlaybackTestFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected