1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

View::Draw() is no longer static.

This commit is contained in:
Bartosz Taudul
2022-10-13 19:50:35 +02:00
parent c89c4f46ea
commit 0a7ae94fcb
2 changed files with 34 additions and 45 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ public:
View( void(*cbMainThread)(std::function<void()>, bool), FileRead& f, ImFont* fixedWidth, ImFont* smallFont, ImFont* bigFont, SetTitleCallback stcb, SetScaleCallback sscb, AttentionCallback acb );
~View();
static bool Draw();
bool Draw();
bool WasActive() const;
void NotifyRootWindowSize( float w, float h ) { m_rootWidth = w; m_rootHeight = h; }