diff --git a/base/vulkanexamplebase.cpp b/base/vulkanexamplebase.cpp index 4a7d8e39..57adf762 100644 --- a/base/vulkanexamplebase.cpp +++ b/base/vulkanexamplebase.cpp @@ -290,6 +290,7 @@ void VulkanExampleBase::benchmarkLoop() result << std::fixed << std::setprecision(3); result << title << std::endl; + result << deviceProperties.deviceName << std::endl; result << ",iterations,time(ms),fps" << std::endl;; for (size_t i = 0; i < benchmark.iterationTime.size(); i++) { result << "," << i << "," << benchmark.iterationTime[i] << "," << (1000.0 / benchmark.iterationTime[i]) << std::endl;