1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-04-03 16:25:19 +02:00

[dxvk] Add config option to toggle tiler optimizations

This commit is contained in:
Philip Rebohle 2025-02-05 19:24:37 +01:00
parent fa2d791d79
commit 821386aeff
4 changed files with 17 additions and 1 deletions

View File

@ -218,6 +218,16 @@
# dxvk.tearFree = Auto
# Controls tiler optimizations. Enabling these will alter the behaviour of
# submission heuristics and enables some non-default behaviour in DXVK.
# This option is only intended to be changed for performance testing and
# debugging purposes.
#
# Supported values: Auto, True, False
# dxvk.tilerMode = Auto
# Assume that command lists created from deferred contexts are only used
# once. This is extremely common and may improve performance while reducing
# the amount of memory wasted if games keep their command list objects alive

View File

@ -434,7 +434,9 @@ namespace dxvk {
hints.renderPassClearFormatBug = m_adapter->matchesDriver(
VK_DRIVER_ID_NVIDIA_PROPRIETARY, Version(), Version(560, 28, 3));
// On tilers we need to respect render passes some more
hints.preferRenderPassOps = m_adapter->matchesDriver(VK_DRIVER_ID_MESA_TURNIP);
bool tilerMode = m_adapter->matchesDriver(VK_DRIVER_ID_MESA_TURNIP);
applyTristate(tilerMode, m_options.tilerMode);
hints.preferRenderPassOps = tilerMode;
return hints;
}

View File

@ -19,6 +19,7 @@ namespace dxvk {
zeroMappedMemory = config.getOption<bool> ("dxvk.zeroMappedMemory", false);
allowFse = config.getOption<bool> ("dxvk.allowFse", false);
deviceFilter = config.getOption<std::string>("dxvk.deviceFilter", "");
tilerMode = config.getOption<Tristate>("dxvk.tilerMode", Tristate::Auto);
}
}

View File

@ -58,6 +58,9 @@ namespace dxvk {
/// Allows full-screen exclusive mode on Windows
bool allowFse = false;
/// Whether to enable tiler optimizations
Tristate tilerMode = Tristate::Auto;
// Device name
std::string deviceFilter;
};