VideoInterface: Throttle before VBlank statistics counting.

This commit is contained in:
Jordan Woyak 2025-03-06 03:02:19 -06:00
parent 9ac9813492
commit c4bd98c626
1 changed files with 5 additions and 0 deletions

View File

@ -839,6 +839,11 @@ void VideoInterfaceManager::EndField(FieldType field, u64 ticks)
if (!Config::Get(Config::GFX_HACK_EARLY_XFB_OUTPUT))
OutputField(field, ticks);
// Note: We really only need to Throttle prior to to presentation,
// but it is needed here if we want accurate "VBlank" statistics,
// when using GPU-on-Thread or Early/Immediate XFB.
m_system.GetCoreTiming().Throttle(ticks);
g_perf_metrics.CountVBlank();
VIEndFieldEvent::Trigger();
Core::OnFrameEnd(m_system);