rsx: Always execute pre-draw pipeline analysis regardless of flags

This commit is contained in:
kd-11 2025-03-16 22:00:47 +03:00 committed by kd-11
parent ba7b7b65a1
commit 1616942943
2 changed files with 2 additions and 8 deletions

View file

@ -740,10 +740,7 @@ void GLGSRender::end()
return;
}
if (m_graphics_state & (rsx::pipeline_state::fragment_program_ucode_dirty | rsx::pipeline_state::vertex_program_ucode_dirty))
{
analyse_current_rsx_pipeline();
}
analyse_current_rsx_pipeline();
m_frame_stats.setup_time += m_profiler.duration();

View file

@ -1031,10 +1031,7 @@ void VKGSRender::end()
m_current_frame->flags &= ~frame_context_state::dirty;
}
if (m_graphics_state & (rsx::pipeline_state::fragment_program_ucode_dirty | rsx::pipeline_state::vertex_program_ucode_dirty))
{
analyse_current_rsx_pipeline();
}
analyse_current_rsx_pipeline();
m_frame_stats.setup_time += m_profiler.duration();