mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxgi] Pass display refresh rate around in windowed mode
This commit is contained in:
parent
93269aa330
commit
b070457366
1 changed files with 4 additions and 3 deletions
|
@ -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)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue