Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-08-12 20:18:17 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-13 00:05:34 +0300
commit8aa0be39d5497324d9d70ee8dc8c56352f1df552 (patch)
treebc484639e05188c563aeda6fb6cfaeed925bf92e /server/TracyView.cpp
parent0b944c88bb7f6947d57efd7a30907e64c14e93ee (diff)
Drop support for CPU id queries.
Diffstat (limited to 'server/TracyView.cpp')
-rw-r--r--server/TracyView.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/server/TracyView.cpp b/server/TracyView.cpp
index 1a44aa9a..3348ac7a 100644
--- a/server/TracyView.cpp
+++ b/server/TracyView.cpp
@@ -10761,19 +10761,6 @@ void View::ZoneTooltip( const ZoneEvent& ev )
ImGui::SameLine();
ImGui::TextDisabled( "(%.2f%%)", 100.f * selftime / ztime );
}
- if( ev.cpu_start >= 0 )
- {
- TextDisabledUnformatted( "CPU:" );
- ImGui::SameLine();
- if( ev.end < 0 || ev.cpu_start == ev.cpu_end )
- {
- ImGui::Text( "%i", ev.cpu_start );
- }
- else
- {
- ImGui::Text( "%i -> %i", ev.cpu_start, ev.cpu_end );
- }
- }
if( ev.text.active )
{
ImGui::NewLine();