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

Workaround for bad Nvidia performance in Indiana Jones and the Great Circle #172

Merged
merged 3 commits into from
Dec 15, 2024
Merged
Changes from 2 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
14 changes: 14 additions & 0 deletions gamefixes-steam/2677660.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""Game fix for Indiana Jones and the Great Circle"""

from protonfixes import util


def main() -> None:
"""Workarounds for various graphics driver bugs encountered in this game"""
# RadV: Missing textures and glowing eyes
UsernamesAreNotMyThing marked this conversation as resolved.
Show resolved Hide resolved
util.set_environment('radv_legacy_sparse_binding', 'true')
util.set_environment('radv_zero_vram', 'true')
util.set_environment('RADV_DEBUG', 'nodcc')
# Nvidia: bad performance due to poor VRAM utilization
R1kaB3rN marked this conversation as resolved.
Show resolved Hide resolved
util.set_environment('DXVK_NVAPI_GPU_ARCH', 'GA100')
R1kaB3rN marked this conversation as resolved.
Show resolved Hide resolved
util.set_environment('__GL_13ebad', '0x1')
Loading