mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Merge pull request #8912 from JosJuice/fix-profiler
VideoCommon: Show profiler output again
This commit is contained in:
commit
5792881eeb
1 changed files with 4 additions and 0 deletions
|
@ -557,6 +557,10 @@ void Renderer::DrawDebugText()
|
||||||
|
|
||||||
if (g_ActiveConfig.bOverlayProjStats)
|
if (g_ActiveConfig.bOverlayProjStats)
|
||||||
g_stats.DisplayProj();
|
g_stats.DisplayProj();
|
||||||
|
|
||||||
|
const std::string profile_output = Common::Profiler::ToString();
|
||||||
|
if (!profile_output.empty())
|
||||||
|
ImGui::TextUnformatted(profile_output.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
float Renderer::CalculateDrawAspectRatio() const
|
float Renderer::CalculateDrawAspectRatio() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue