forked from ValveSoftware/Proton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca6aae5
commit c573f68
Showing
14 changed files
with
6,868 additions
and
295 deletions.
There are no files selected for viewing
Submodule dxvk-nvapi
updated
80 files
Binary file not shown.
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
|
||
git checkout -- proton | ||
echo "Proton: Add patches" | ||
patch -Np1 < ./patches/proton.patch | ||
patch -Np1 < ./patches/makefile.patch | ||
|
||
pushd dxvk || exit | ||
git reset --hard HEAD | ||
git clean -xdf | ||
echo "DXVK: Add LFX2 support" | ||
patch -Np1 < ../patches/lfx2-dxvk.patch | ||
popd || exit | ||
|
||
pushd vkd3d-proton || exit | ||
git reset --hard HEAD | ||
git clean -xdf | ||
echo "VKD3D-Proton: Add LFX2 support" | ||
patch -Np1 < ../patches/lfx2-vkd3d.patch | ||
popd || exit | ||
|
||
pushd wine || exit | ||
git reset --hard HEAD | ||
git clean -xdf | ||
echo "Wine: Add HAGS spoof" | ||
patch -Np1 < ../patches/wine-hags-spoof.patch | ||
popd || exit | ||
|
||
pushd dxvk-nvapi || exit | ||
git reset --hard HEAD | ||
git clean -xdf | ||
echo "DXVK-NVAPI: Add LFX2 support" | ||
patch -Np1 < ../patches/lfx2-nvapi.patch | ||
popd || exit |
Oops, something went wrong.