mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-25 23:44:35 +00:00
Adjust language to no longer specify "all cores".
This commit is contained in:
parent
296f30a9c5
commit
c689e9e0aa
2
NEWS
2
NEWS
@ -25,7 +25,7 @@ v0.x.x (xxxx-xx-xx)
|
|||||||
been heavily parallelized.
|
been heavily parallelized.
|
||||||
- The impact is especially visible with traces containing large amounts
|
- The impact is especially visible with traces containing large amounts
|
||||||
of data. The framerate improvement in such cases can be ~30x.
|
of data. The framerate improvement in such cases can be ~30x.
|
||||||
- Consequently, the profiler GUI will now produce all-core spikes when
|
- Consequently, the profiler GUI will now produce multi-core spikes when
|
||||||
rendering frames. This may have impact on the profiled application's
|
rendering frames. This may have impact on the profiled application's
|
||||||
performance, if both the application and the profiler GUI are running
|
performance, if both the application and the profiler GUI are running
|
||||||
on the same machine. If this is a problem, you may consider the capture
|
on the same machine. If this is a problem, you may consider the capture
|
||||||
|
@ -567,7 +567,7 @@ static void DrawContents()
|
|||||||
ImGui::Indent();
|
ImGui::Indent();
|
||||||
if( ImGui::RadioButton( "Enabled", s_config.threadedRendering ) ) { s_config.threadedRendering = true; SaveConfig(); }
|
if( ImGui::RadioButton( "Enabled", s_config.threadedRendering ) ) { s_config.threadedRendering = true; SaveConfig(); }
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
tracy::DrawHelpMarker( "Uses all available CPU cores for rendering. May affect performance of the profiled application when running on the same machine." );
|
tracy::DrawHelpMarker( "Uses multiple CPU cores for rendering. May affect performance of the profiled application when running on the same machine." );
|
||||||
if( ImGui::RadioButton( "Disabled", !s_config.threadedRendering ) ) { s_config.threadedRendering = false; SaveConfig(); }
|
if( ImGui::RadioButton( "Disabled", !s_config.threadedRendering ) ) { s_config.threadedRendering = false; SaveConfig(); }
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
tracy::DrawHelpMarker( "Restricts rendering to a single CPU core. Can reduce profiler frame rate." );
|
tracy::DrawHelpMarker( "Restricts rendering to a single CPU core. Can reduce profiler frame rate." );
|
||||||
|
Loading…
Reference in New Issue
Block a user