Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[util] Rename apitraceMode config options (inline with upstream) #167

Merged
merged 1 commit into from
Jul 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/util/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ namespace dxvk {
}} },
/* Motor City Online */
{ R"(\\MCity_d\.exe$)", {{
{ "d3d9.apitraceMode", "True" },
{ "d3d9.cachedDynamicBuffers", "True" },
{ "d3d8.managedBufferPlacement", "False" },
{ "d3d8.batching", "True" },
}} },
Expand Down Expand Up @@ -865,7 +865,7 @@ namespace dxvk {
(with the "Modern Patch") */
{ R"(\\nfs3\.exe$)", {{
{ "d3d9.enableDialogMode", "True" },
{ "d3d9.apitraceMode", "True" },
{ "d3d9.cachedDynamicBuffers", "True" },
{ "d3d8.managedBufferPlacement", "False" },
{ "d3d8.batching", "True" },
}} },
Expand All @@ -875,15 +875,16 @@ namespace dxvk {
without a memory limit in place */
{ R"(\\nfs4\.exe$)", {{
{ "d3d9.enableDialogMode", "True" },
{ "d3d9.cachedDynamicBuffers", "True" },
{ "d3d9.memoryTrackTest", "True" },
{ "d3d9.maxAvailableMemory", "256" },
{ "d3d8.managedBufferPlacement", "False" },
{ "d3d8.batching", "True" },
}} },
/* Project I.G.I. 2: Covert Strike */
{ R"(\\igi2\.exe$)", {{
{ "d3d9.managedBufferPlacement", "False" },
{ "d3d9.apitraceMode", "True" },
{ "d3d8.managedBufferPlacement", "False" },
{ "d3d9.cachedDynamicBuffers", "True" },
}} },
/* Treasure Planet: Battle at Procyon *
* Declares v5 as color but shader uses v6 */
Expand Down