mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
rsx: Always execute pre-draw pipeline analysis regardless of flags
This commit is contained in:
parent
ba7b7b65a1
commit
1616942943
2 changed files with 2 additions and 8 deletions
|
@ -740,10 +740,7 @@ void GLGSRender::end()
|
||||||
return;
|
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();
|
m_frame_stats.setup_time += m_profiler.duration();
|
||||||
|
|
||||||
|
|
|
@ -1031,10 +1031,7 @@ void VKGSRender::end()
|
||||||
m_current_frame->flags &= ~frame_context_state::dirty;
|
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();
|
m_frame_stats.setup_time += m_profiler.duration();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue