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

Add key to TimelineItem.

This commit is contained in:
Tomaž Vöröš
2023-01-27 20:00:05 +01:00
parent 2df56e9941
commit dbefb70db3
7 changed files with 13 additions and 8 deletions
+2 -1
View File
@@ -8,10 +8,11 @@
namespace tracy
{
TimelineItem::TimelineItem( View& view, Worker& worker )
TimelineItem::TimelineItem( View& view, Worker& worker, const void* key )
: m_visible( true )
, m_showFull( true )
, m_height( 0 )
, m_key( key )
, m_view( view )
, m_worker( worker )
{