Skip to content
Open
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: 1 addition & 8 deletions bottles/backend/wine/winecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,17 +361,10 @@ def get_env(
if params.dxvk and not return_steam_env:
env.add("WINE_LARGE_ADDRESS_AWARE", "1")
env.add(
"DXVK_STATE_CACHE_PATH", os.path.join(bottle, "cache", "dxvk_state")
"DXVK_SHADER_CACHE_PATH", os.path.join(bottle, "cache", "dxvk_shader")
)
env.add("STAGING_SHARED_MEMORY", "1")
env.add("__GL_SHADER_DISK_CACHE", "1")
env.add(
"__GL_SHADER_DISK_CACHE_SKIP_CLEANUP", "1"
) # should not be needed anymore
env.add(
"__GL_SHADER_DISK_CACHE_PATH",
os.path.join(bottle, "cache", "gl_shader"),
)
env.add(
"MESA_SHADER_CACHE_DIR", os.path.join(bottle, "cache", "mesa_shader")
)
Expand Down