[dxgi] Pass display refresh rate around in windowed mode

This commit is contained in:
Philip Rebohle 2025-01-17 23:04:17 +01:00
parent 93269aa330
commit b070457366

View file

@ -997,13 +997,14 @@ namespace dxvk {
if (m_presenter2 == nullptr) if (m_presenter2 == nullptr)
return; return;
// Engage the frame limiter with large sync intervals even in windowed // Windowed mode is annoying because different displays might run at
// mode since we want to avoid double-presenting to the swap chain. // different refresh rates. Still need to engage limiter to handle
// latency sleep and to correctly deal with large sync intervals.
if (SyncInterval != m_frameRateSyncInterval && m_descFs.Windowed) { if (SyncInterval != m_frameRateSyncInterval && m_descFs.Windowed) {
m_frameRateSyncInterval = SyncInterval; m_frameRateSyncInterval = SyncInterval;
m_frameRateRefresh = 0.0f; m_frameRateRefresh = 0.0f;
if (SyncInterval > 1 && wsi::isWindow(m_window)) { if (SyncInterval && wsi::isWindow(m_window)) {
wsi::WsiMode mode = { }; wsi::WsiMode mode = { };
if (wsi::getCurrentDisplayMode(wsi::getWindowMonitor(m_window), &mode)) { if (wsi::getCurrentDisplayMode(wsi::getWindowMonitor(m_window), &mode)) {