mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Prefer homebrew latency sleep on 32-bit
NV latency sleep seems to be straight-up broken at a driver level.
This commit is contained in:
parent
196644c7a5
commit
8c053a0fb1
1 changed files with 3 additions and 1 deletions
|
@ -312,7 +312,9 @@ namespace dxvk {
|
|||
if (m_options.latencySleep != Tristate::True)
|
||||
return nullptr;
|
||||
|
||||
if (m_features.nvLowLatency2)
|
||||
// Latency sleep seems to be completely broken on 32-bit Nvidia
|
||||
// drivers as of 565.77, let's use our built-in implementation
|
||||
if (m_features.nvLowLatency2 && !env::is32BitHostPlatform())
|
||||
return new DxvkBuiltInLatencyTrackerNv(presenter);
|
||||
|
||||
return new DxvkBuiltInLatencyTracker(
|
||||
|
|
Loading…
Add table
Reference in a new issue