Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
TracingPanel.hpp
1#pragma once
2
3#include <chrono>
4
5#include <EngineCore/Profiling.hpp>
6
7namespace Grindstone::Editor::ImguiEditor {
9 public:
10 void Render();
11 private:
12 void RenderContents();
13 void TryCaptureSession();
14
15 bool isShowingPanel = true;
17 std::chrono::steady_clock::time_point lastCaptureTime;
18 };
19}