We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49cdeaf commit dbb28e1Copy full SHA for dbb28e1
src/dxvk/dxvk_device.cpp
@@ -312,7 +312,9 @@ namespace dxvk {
312
if (m_options.latencySleep != Tristate::True)
313
return nullptr;
314
315
- if (m_features.nvLowLatency2)
+ // Latency sleep seems to be completely broken on 32-bit Nvidia
316
+ // drivers as of 565.77, let's use our built-in implementation
317
+ if (m_features.nvLowLatency2 && !env::is32BitHostPlatform())
318
return new DxvkBuiltInLatencyTrackerNv(presenter);
319
320
return new DxvkBuiltInLatencyTracker(
0 commit comments