mirror of
https://github.com/wolfpld/tracy
synced 2025-04-29 04:23:51 +00:00
Add on demand mode flag accessor.
This commit is contained in:
parent
e92874c0bb
commit
5ebc499f49
@ -624,6 +624,7 @@ public:
|
||||
bool IsConnected() const { return m_connected.load( std::memory_order_relaxed ); }
|
||||
bool IsDataStatic() const { return !m_thread.joinable(); }
|
||||
bool IsBackgroundDone() const { return m_backgroundDone.load( std::memory_order_relaxed ); }
|
||||
bool IsOnDemand() const { return m_onDemand; }
|
||||
void Shutdown() { m_shutdown.store( true, std::memory_order_relaxed ); }
|
||||
void Disconnect();
|
||||
bool WasDisconnectIssued() const { return m_disconnect; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user