mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
rsx: Always execute pre-draw pipeline analysis regardless of flags
This commit is contained in:
parent
4bd3dcc7e7
commit
0bffff5a83
2 changed files with 2 additions and 8 deletions
|
@ -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();
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue