Skip to content

Commit

Permalink
Application: swap order of GUIWindowManager Render and RenderEx
Browse files Browse the repository at this point in the history
  • Loading branch information
cpm-code authored and Portisch committed Jan 22, 2025
1 parent e2f763f commit 17382c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xbmc/application/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,9 @@ void CApplication::Render()
if (!CServiceBroker::GetRenderSystem()->BeginRender())
return;

// render video layer
CServiceBroker::GetGUI()->GetWindowManager().RenderEx();

// render gui layer
if (appPower->GetRenderGUI() && !m_skipGuiRender)
{
Expand All @@ -838,9 +841,6 @@ void CApplication::Render()
m_lastRenderTime = std::chrono::steady_clock::now();
}

// render video layer
CServiceBroker::GetGUI()->GetWindowManager().RenderEx();

CServiceBroker::GetRenderSystem()->EndRender();

// reset our info cache - we do this at the end of Render so that it is
Expand Down

0 comments on commit 17382c6

Please sign in to comment.