mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d9] Add a forceModeHeights config option
This commit is contained in:
parent
c707d9026f
commit
4685e4c619
5 changed files with 35 additions and 0 deletions
13
dxvk.conf
13
dxvk.conf
|
@ -614,6 +614,19 @@
|
||||||
|
|
||||||
# d3d9.forceAspectRatio = ""
|
# d3d9.forceAspectRatio = ""
|
||||||
|
|
||||||
|
# Force Mode Heights
|
||||||
|
#
|
||||||
|
# Only exposes modes with certain heights, if they are
|
||||||
|
# also supported by the adapter. Can be used in conjunction
|
||||||
|
# with forceAspectRatio to further restrict reported modes.
|
||||||
|
# Useful for titles that break when too many modes are reported,
|
||||||
|
# e.g., AquaNox, AquaNox 2: Revelation.
|
||||||
|
#
|
||||||
|
# Supported values:
|
||||||
|
# - A list of mode heights, i.e. "480,720,1080"
|
||||||
|
|
||||||
|
# d3d9.forceModeHeights = ""
|
||||||
|
|
||||||
# Enumerate by Displays
|
# Enumerate by Displays
|
||||||
#
|
#
|
||||||
# Whether we should enumerate D3D9 adapters by display (windows behaviour)
|
# Whether we should enumerate D3D9 adapters by display (windows behaviour)
|
||||||
|
|
|
@ -44,6 +44,16 @@ namespace dxvk {
|
||||||
m_modeCacheFormat (D3D9Format::Unknown),
|
m_modeCacheFormat (D3D9Format::Unknown),
|
||||||
m_d3d9Formats (Adapter, m_parent->GetOptions()) {
|
m_d3d9Formats (Adapter, m_parent->GetOptions()) {
|
||||||
m_adapter->logAdapterInfo();
|
m_adapter->logAdapterInfo();
|
||||||
|
|
||||||
|
auto& options = m_parent->GetOptions();
|
||||||
|
|
||||||
|
if (!options.forceModeHeights.empty()) {
|
||||||
|
uint32_t forcedHeight = 0;
|
||||||
|
for (auto height : str::split(options.forceModeHeights, ",")) {
|
||||||
|
std::from_chars(height.data(), height.data() + height.size(), forcedHeight);
|
||||||
|
m_forcedModeHeights.emplace_back(forcedHeight);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template <size_t N>
|
template <size_t N>
|
||||||
|
@ -816,6 +826,12 @@ namespace dxvk {
|
||||||
if (!forcedRatio.undefined() && Ratio<DWORD>(devMode.width, devMode.height) != forcedRatio)
|
if (!forcedRatio.undefined() && Ratio<DWORD>(devMode.width, devMode.height) != forcedRatio)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (!m_forcedModeHeights.empty() &&
|
||||||
|
std::find(m_forcedModeHeights.begin(),
|
||||||
|
m_forcedModeHeights.end(),
|
||||||
|
devMode.height) == m_forcedModeHeights.end())
|
||||||
|
continue;
|
||||||
|
|
||||||
D3DDISPLAYMODEEX mode = ConvertDisplayMode(devMode);
|
D3DDISPLAYMODEEX mode = ConvertDisplayMode(devMode);
|
||||||
// Fix up the D3DFORMAT to match what we are enumerating
|
// Fix up the D3DFORMAT to match what we are enumerating
|
||||||
mode.Format = static_cast<D3DFORMAT>(Format);
|
mode.Format = static_cast<D3DFORMAT>(Format);
|
||||||
|
|
|
@ -107,6 +107,8 @@ namespace dxvk {
|
||||||
|
|
||||||
const D3D9VkFormatTable m_d3d9Formats;
|
const D3D9VkFormatTable m_d3d9Formats;
|
||||||
|
|
||||||
|
std::vector<uint32_t> m_forcedModeHeights;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
|
@ -65,6 +65,7 @@ namespace dxvk {
|
||||||
this->forceSwapchainMSAA = config.getOption<int32_t> ("d3d9.forceSwapchainMSAA", -1);
|
this->forceSwapchainMSAA = config.getOption<int32_t> ("d3d9.forceSwapchainMSAA", -1);
|
||||||
this->forceSampleRateShading = config.getOption<bool> ("d3d9.forceSampleRateShading", false);
|
this->forceSampleRateShading = config.getOption<bool> ("d3d9.forceSampleRateShading", false);
|
||||||
this->forceAspectRatio = config.getOption<std::string> ("d3d9.forceAspectRatio", "");
|
this->forceAspectRatio = config.getOption<std::string> ("d3d9.forceAspectRatio", "");
|
||||||
|
this->forceModeHeights = config.getOption<std::string> ("d3d9.forceModeHeights", "");
|
||||||
this->enumerateByDisplays = config.getOption<bool> ("d3d9.enumerateByDisplays", true);
|
this->enumerateByDisplays = config.getOption<bool> ("d3d9.enumerateByDisplays", true);
|
||||||
this->cachedDynamicBuffers = config.getOption<bool> ("d3d9.cachedDynamicBuffers", false);
|
this->cachedDynamicBuffers = config.getOption<bool> ("d3d9.cachedDynamicBuffers", false);
|
||||||
this->deviceLocalConstantBuffers = config.getOption<bool> ("d3d9.deviceLocalConstantBuffers", false);
|
this->deviceLocalConstantBuffers = config.getOption<bool> ("d3d9.deviceLocalConstantBuffers", false);
|
||||||
|
|
|
@ -103,6 +103,9 @@ namespace dxvk {
|
||||||
/// Forced aspect ratio, disable other modes
|
/// Forced aspect ratio, disable other modes
|
||||||
std::string forceAspectRatio;
|
std::string forceAspectRatio;
|
||||||
|
|
||||||
|
/// Restrict modes based on height
|
||||||
|
std::string forceModeHeights;
|
||||||
|
|
||||||
/// Always use a spec constant to determine sampler type (instead of just in PS 1.x)
|
/// Always use a spec constant to determine sampler type (instead of just in PS 1.x)
|
||||||
/// Works around a game bug in Halo CE where it gives cube textures to 2d/volume samplers
|
/// Works around a game bug in Halo CE where it gives cube textures to 2d/volume samplers
|
||||||
bool forceSamplerTypeSpecConstants;
|
bool forceSamplerTypeSpecConstants;
|
||||||
|
|
Loading…
Add table
Reference in a new issue