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

Timeline items may have preprocessing.

This commit is contained in:
Bartosz Taudul
2023-03-14 02:02:21 +01:00
parent 988de5b594
commit 7dd31ab609
6 changed files with 12 additions and 6 deletions
+2 -1
View File
@@ -8,10 +8,11 @@
namespace tracy
{
TimelineItem::TimelineItem( View& view, Worker& worker, const void* key )
TimelineItem::TimelineItem( View& view, Worker& worker, const void* key, bool wantPreprocess )
: m_visible( true )
, m_showFull( true )
, m_height( 0 )
, m_wantPreprocess( wantPreprocess )
, m_key( key )
, m_view( view )
, m_worker( worker )