Created
February 27, 2020 18:37
-
-
Save sciboy12/f3e640db9c66a6fdfec7bb8b869d071b to your computer and use it in GitHub Desktop.
Fix for DirectX-based games not running on Proton 4.11 or newer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable DRI3 on Intel GPUs | |
# Place this file in /etc/X11/xorg.conf.d/ | |
Section "OutputClass" | |
Identifier "my intel driver settings" | |
MatchDriver "i915" | |
Option "DRI" "3" | |
EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Vulkan drivers | |
sudo apt install libgl1-mesa-glx:i386 libgl1-mesa-dri:i386 mesa-vulkan-drivers mesa-vulkan-drivers:i386 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment