diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 7f40ba3f..f7122bc4 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -13559,6 +13559,10 @@ void View::DrawCallstackWindow() { TextDisabledUnformatted( txt ); } + else if( m_worker.GetCanonicalPointer( entry ) >> 63 != 0 ) + { + TextColoredUnformatted( 0xFF8888FF, txt ); + } else { ImGui::TextUnformatted( txt ); @@ -15678,6 +15682,10 @@ void View::DrawSampleParents() { TextDisabledUnformatted( txt ); } + else if( m_worker.GetCanonicalPointer( entry ) >> 63 != 0 ) + { + TextColoredUnformatted( 0xFF8888FF, txt ); + } else { ImGui::TextUnformatted( txt ); @@ -17445,6 +17453,10 @@ void View::CallstackTooltip( uint32_t idx ) { TextDisabledUnformatted( txt ); } + else if( m_worker.GetCanonicalPointer( entry ) >> 63 != 0 ) + { + TextColoredUnformatted( 0xFF8888FF, txt ); + } else { ImGui::TextUnformatted( txt );