mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Remove dxvk.maxChunkSize option
This commit is contained in:
parent
619b9b12c2
commit
565ec7e0d3
4 changed files with 0 additions and 55 deletions
11
dxvk.conf
11
dxvk.conf
|
@ -358,17 +358,6 @@
|
||||||
# dxvk.useRawSsbo = Auto
|
# dxvk.useRawSsbo = Auto
|
||||||
|
|
||||||
|
|
||||||
# Changes memory chunk size.
|
|
||||||
#
|
|
||||||
# Can be used to override the maximum memory chunk size.
|
|
||||||
#
|
|
||||||
# Supported values:
|
|
||||||
# - 0 to use the defaults
|
|
||||||
# - any positive integer to limit the chunk size, in MiB
|
|
||||||
|
|
||||||
# dxvk.maxChunkSize = 0
|
|
||||||
|
|
||||||
|
|
||||||
# Controls graphics pipeline library behaviour
|
# Controls graphics pipeline library behaviour
|
||||||
#
|
#
|
||||||
# Can be used to change VK_EXT_graphics_pipeline_library usage for
|
# Can be used to change VK_EXT_graphics_pipeline_library usage for
|
||||||
|
|
|
@ -9,7 +9,6 @@ namespace dxvk {
|
||||||
enableGraphicsPipelineLibrary = config.getOption<Tristate>("dxvk.enableGraphicsPipelineLibrary", Tristate::Auto);
|
enableGraphicsPipelineLibrary = config.getOption<Tristate>("dxvk.enableGraphicsPipelineLibrary", Tristate::Auto);
|
||||||
trackPipelineLifetime = config.getOption<Tristate>("dxvk.trackPipelineLifetime", Tristate::Auto);
|
trackPipelineLifetime = config.getOption<Tristate>("dxvk.trackPipelineLifetime", Tristate::Auto);
|
||||||
useRawSsbo = config.getOption<Tristate>("dxvk.useRawSsbo", Tristate::Auto);
|
useRawSsbo = config.getOption<Tristate>("dxvk.useRawSsbo", Tristate::Auto);
|
||||||
maxChunkSize = config.getOption<int32_t> ("dxvk.maxChunkSize", 0);
|
|
||||||
hud = config.getOption<std::string>("dxvk.hud", "");
|
hud = config.getOption<std::string>("dxvk.hud", "");
|
||||||
tearFree = config.getOption<Tristate>("dxvk.tearFree", Tristate::Auto);
|
tearFree = config.getOption<Tristate>("dxvk.tearFree", Tristate::Auto);
|
||||||
hideIntegratedGraphics = config.getOption<bool> ("dxvk.hideIntegratedGraphics", false);
|
hideIntegratedGraphics = config.getOption<bool> ("dxvk.hideIntegratedGraphics", false);
|
||||||
|
|
|
@ -27,9 +27,6 @@ namespace dxvk {
|
||||||
/// Shader-related options
|
/// Shader-related options
|
||||||
Tristate useRawSsbo;
|
Tristate useRawSsbo;
|
||||||
|
|
||||||
/// Maximum memory chunk size in MiB
|
|
||||||
int32_t maxChunkSize;
|
|
||||||
|
|
||||||
/// HUD elements
|
/// HUD elements
|
||||||
std::string hud;
|
std::string hud;
|
||||||
|
|
||||||
|
|
|
@ -26,14 +26,6 @@ namespace dxvk {
|
||||||
{ R"(\\Diablo IV\.exe$)", {{
|
{ R"(\\Diablo IV\.exe$)", {{
|
||||||
{ "dxgi.hideNvidiaGpu", "False" },
|
{ "dxgi.hideNvidiaGpu", "False" },
|
||||||
}} },
|
}} },
|
||||||
/* WILD HEARTS™️ *
|
|
||||||
* D3D12 title using D3D11 device for *
|
|
||||||
* media texture creation, whereby a large *
|
|
||||||
* chunk size only slows down media *
|
|
||||||
* initialization */
|
|
||||||
{ R"(\\WILD HEARTS(_Trial)?\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "4" },
|
|
||||||
}} },
|
|
||||||
/* Ratchet & Clank: Rift Apart - does not allow
|
/* Ratchet & Clank: Rift Apart - does not allow
|
||||||
* enabling ray tracing if it sees an AMD GPU. */
|
* enabling ray tracing if it sees an AMD GPU. */
|
||||||
{ R"(\\RiftApart\.exe$)", {{
|
{ R"(\\RiftApart\.exe$)", {{
|
||||||
|
@ -395,38 +387,6 @@ namespace dxvk {
|
||||||
{ R"(\\SnowRunner\.exe$)", {{
|
{ R"(\\SnowRunner\.exe$)", {{
|
||||||
{ "d3d11.dcSingleUseMode", "False" },
|
{ "d3d11.dcSingleUseMode", "False" },
|
||||||
}} },
|
}} },
|
||||||
/* Rockstar Games Launcher */
|
|
||||||
{ R"(\\Rockstar Games\\Launcher\\Launcher\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* Rockstar Social Club */
|
|
||||||
{ R"(\\Rockstar Games\\Social Club\\SocialClubHelper\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* EA Desktop App */
|
|
||||||
{ R"(\\EADesktop\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* Origin app (legacy EA Desktop) */
|
|
||||||
{ R"(\\Origin\\(Origin|OriginWebHelperService)\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* Ubisoft Connect (UPlay) */
|
|
||||||
{ R"(\\Ubisoft\\Ubisoft Game Launcher\\(UbisoftConnect|upc)\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* GOG Galaxy */
|
|
||||||
{ R"(\\GalaxyClient\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* Epic Games Launcher */
|
|
||||||
{ R"(\\(EpicGamesLauncher|EpicWebHelper)\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* Blizzard Entertainment Battle.net */
|
|
||||||
{ R"(\\Battle\.net\.exe$)", {{
|
|
||||||
{ "dxvk.maxChunkSize", "1" },
|
|
||||||
}} },
|
|
||||||
/* Fallout 76
|
/* Fallout 76
|
||||||
* Game tries to be too "smart" and changes sync
|
* Game tries to be too "smart" and changes sync
|
||||||
* interval based on performance (in fullscreen)
|
* interval based on performance (in fullscreen)
|
||||||
|
|
Loading…
Add table
Reference in a new issue