forked from GloriousEggroll/wine-ge-custom
-
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
Showing
15 changed files
with
2,704 additions
and
342 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/.vagrant/ | ||
/vagrant_share/ | ||
/builds |
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 |
---|---|---|
@@ -1 +1 @@ | ||
Lutris Wine GE-Proton8-17 | ||
Lutris Wine GE-Proton8-22 |
Submodule buildbot
updated
11 files
+2 −3 | Makefile | |
+1 −1 | README | |
+26 −17 | runners/ags/build.sh | |
+0 −6 | runners/dolphin/build.sh | |
+4 −5 | runners/fs-uae/build.sh | |
+22 −8 | runners/libretro/build.sh | |
+6 −3 | runners/wine/build.sh | |
+37 −29 | runtime/Debian-12.packages | |
+2 −2 | setup-buildbot.sh | |
+12 −11 | tools/docker/build-image.sh | |
+1 −1 | tools/vagrant/Vagrantfile |
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
1,981 changes: 1,981 additions & 0 deletions
1,981
patches/proton/47-proton-fshack-AMD-FSR-complete.patch
Large diffs are not rendered by default.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
patches/proton/49-fsr-width-using-height-and-aspect-ratio.patch
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,27 @@ | ||
From bfa433091a379c35a6627bf72b8adb5a6a294f91 Mon Sep 17 00:00:00 2001 | ||
From: Ph42oN <julle.ys.57@gmail.com> | ||
Date: Mon, 25 Sep 2023 11:53:22 +0300 | ||
Subject: [PATCH] calculate width using height and aspect ratio | ||
|
||
--- | ||
dlls/winex11.drv/fs.c | 3 ++- | ||
1 file changed, 2 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/dlls/winex11.drv/fs.c b/dlls/winex11.drv/fs.c | ||
index f2162d2..e67734c 100644 | ||
--- a/dlls/winex11.drv/fs.c | ||
+++ b/dlls/winex11.drv/fs.c | ||
@@ -360,8 +360,9 @@ static void monitor_get_modes( struct fs_monitor *monitor, DEVMODEW **modes, UIN | ||
{ | ||
for (i = 0; i < ARRAY_SIZE(fs_monitor_sizes_fsr); ++i) | ||
{ | ||
- fs_monitor_sizes_fsr[i].size.cx = (DWORD)(mode_host.dmPelsWidth / fsr_ratios[i] + 0.5f); | ||
fs_monitor_sizes_fsr[i].size.cy = (DWORD)(mode_host.dmPelsHeight / fsr_ratios[i] + 0.5f); | ||
+ fs_monitor_sizes_fsr[i].size.cx = (DWORD)(fs_monitor_sizes_fsr[i].size.cy | ||
+ * ((float)mode_host.dmPelsWidth / (float)mode_host.dmPelsHeight) + 0.5f); | ||
|
||
TRACE("created fsr resolution: %dx%d, ratio: %1.1f\n", | ||
fs_monitor_sizes_fsr[i].size.cx, | ||
-- | ||
2.41.0 | ||
|
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
Oops, something went wrong.