diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-05-11 13:20:34 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-05-11 13:20:34 -0500 |
commit | 8077d33ba05a46ea61914be686816be5b54bae6d (patch) | |
tree | c8efaf66f36bee37b496c01aa22e7f3535045d6e /indra/newview/llfloaterperformance.cpp | |
parent | 0b1c0aa242db6e789e0706f5ebfb9c80f98da9d3 (diff) |
SL-19656 Remove LLPerfStats thread and fold into General thread. Hook avatar GPU time into LLPerfStats. Incidental decruft.
Diffstat (limited to 'indra/newview/llfloaterperformance.cpp')
-rw-r--r-- | indra/newview/llfloaterperformance.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/indra/newview/llfloaterperformance.cpp b/indra/newview/llfloaterperformance.cpp index 8c5745aa43..19fc3e673e 100644 --- a/indra/newview/llfloaterperformance.cpp +++ b/indra/newview/llfloaterperformance.cpp @@ -456,15 +456,8 @@ void LLFloaterPerformance::populateNearbyList() row[1]["column"] = "complex_value"; row[1]["type"] = "text"; - if (is_slow && !showTunedART) - { - row[1]["value"] = llformat( "%.f", LLPerfStats::raw_to_us( avatar->getLastART() ) ); - } - else - { - // use GPU time in us - row[1]["value"] = llformat( "%.f", render_av_gpu_ms * 1000.f); - } + // use GPU time in us + row[1]["value"] = llformat( "%.f", render_av_gpu_ms * 1000.f); row[1]["font"]["name"] = "SANSSERIF"; row[3]["column"] = "name"; |