Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Lehmann <dadschoorse@gmail.com>2021-11-17 14:11:21 +0300
committerArkadiusz Hiler <ahiler@codeweavers.com>2022-06-03 14:26:11 +0300
commit7e7f6155d37e72fcf592fdd4ef7e4dc6a505c341 (patch)
tree943103300b95d5e0c1f0c3efa9167e96c6553681
parent47ae0819ae0db119ee46a1977768cdb7734f7508 (diff)
Set VKD3D_SHADER_DEBUG=none by default.
Link: https://github.com/ValveSoftware/Proton/pull/5326
-rwxr-xr-xproton2
-rwxr-xr-xuser_settings.sample.py3
2 files changed, 5 insertions, 0 deletions
diff --git a/proton b/proton
index 399b21a4..e139ea62 100755
--- a/proton
+++ b/proton
@@ -1071,6 +1071,7 @@ class Session:
self.env.setdefault("WINEDEBUG", "+timestamp,+pid,+tid,+seh,+unwind,+debugstr,+loaddll,+mscoree")
self.env.setdefault("DXVK_LOG_LEVEL", "info")
self.env.setdefault("VKD3D_DEBUG", "warn")
+ self.env.setdefault("VKD3D_SHADER_DEBUG", "fixme")
self.env.setdefault("WINE_MONO_TRACE", "E:System.NotImplementedException")
if self.env["PROTON_LOG"] != "1":
@@ -1080,6 +1081,7 @@ class Session:
self.env.setdefault("WINEDEBUG", "-all")
self.env.setdefault("DXVK_LOG_LEVEL", "none")
self.env.setdefault("VKD3D_DEBUG", "none")
+ self.env.setdefault("VKD3D_SHADER_DEBUG", "none")
#disable XIM support until libx11 >= 1.7 is widespread
self.env.setdefault("WINE_ALLOW_XIM", "0")
diff --git a/user_settings.sample.py b/user_settings.sample.py
index 4019e174..7e04d867 100755
--- a/user_settings.sample.py
+++ b/user_settings.sample.py
@@ -15,6 +15,9 @@ user_settings = {
#vkd3d debug logging
"VKD3D_DEBUG": "warn",
+ #vkd3d-shader debug logging
+ "VKD3D_SHADER_DEBUG": "fixme",
+
#wine-mono debug logging (Wine's .NET replacement)
"WINE_MONO_TRACE": "E:System.NotImplementedException",
#"MONO_LOG_LEVEL": "info",