diff --git a/res/models/box.blend b/res/models/box.blend index 0a08022..54eba0e 100644 Binary files a/res/models/box.blend and b/res/models/box.blend differ diff --git a/res/models/box.blend1 b/res/models/box.blend1 index 5b80c73..0a08022 100644 Binary files a/res/models/box.blend1 and b/res/models/box.blend1 differ diff --git a/src/main.cpp b/src/main.cpp index 75bddef..c227fc5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,8 +36,8 @@ int main() scene.startRender(camera, render); } ImGui::Text("Render Stats"); - ImGui::Text("Last Sample Time: %.3f", scene.getLastSampleTime()); - ImGui::Text("Average Sample Time: %.3f", scene.getAverageSampleTime()); + ImGui::Text("Last Sample Time: %.3f ms", scene.getLastSampleTime()); + ImGui::Text("Average Sample Time: %.3f ms", scene.getAverageSampleTime()); ImGui::PlotLines("Sample Times", scene.getSampleTimes().data(), scene.getSampleTimes().size(), 0, 0, FLT_MAX, FLT_MAX, ImVec2(0, 40)); window.update(scene.getImage()); }