-
Notifications
You must be signed in to change notification settings - Fork 25
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
wine-cachyos: enable optical flow patches #401
Comments
Hi, Yes, this will be done automatcially together with the upcoming experimental rebase for wine-cachyos: @loathingKernel will add this as soon he will do the rebase :) Currently you can also workaround with symlinking proton-cachyos directly into lutrs: #!/bin/bash
echo "Symlinking proton-cachyos"
mkdir ~/.local/share/lutris/runners/wine/proton-cachyos
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/* ~/.local/share/lutris/runners/wine/proton-cachyos
echo "DXVK Cachy"
mkdir -p ~/.local/share/lutris/runtime/dxvk/proton-cachyos/x32
mkdir -p ~/.local/share/lutris/runtime/dxvk/proton-cachyos/x64
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/lib/wine/dxvk/* ~/.local/share/lutris/runtime/dxvk/proton-cachyos/x32
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/lib64/wine/dxvk/* ~/.local/share/lutris/runtime/dxvk/proton-cachyos/x64
echo "NVAPI Cachy"
mkdir -p ~/.local/share/lutris/runtime/dxvk-nvapi/proton-cachyos/x32
mkdir -p ~/.local/share/lutris/runtime/dxvk-nvapi/proton-cachyos/x64
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/lib/wine/nvapi/* ~/.local/share/lutris/runtime/dxvk-nvapi/proton-cachyos/x32
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/lib64/wine/nvapi/* ~/.local/share/lutris/runtime/dxvk-nvapi/proton-cachyos/x64
echo "VKD3D Cachy"
mkdir -p ~/.local/share/lutris/runtime/vkd3d/proton-cachyos/x86
mkdir -p ~/.local/share/lutris/runtime/vkd3d/proton-cachyos/x64
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/lib/wine/vkd3d-proton/* ~/.local/share/lutris/runtime/vkd3d/proton-cachyos/x86
ln -s /usr/share/steam/compatibilitytools.d/proton-cachyos/files/lib64/wine/vkd3d-proton/* ~/.local/share/lutris/runtime/vkd3d/proton-cachyos/x64 Having it in wine-cachyos would be the more proper way, but should come soon. :) |
I would much prefer to make proton-cachyos compatible with umu in the case of Lutris. |
Thanks for the responses. I will go ahead and close this then. Also, I noticed that I can use proton-cachyos without problems through heroic launcher unlike lutris so that's a good enough solution for me. |
Would it be possible to enable the same optical flow patches from
proton-cachyos
forwine-cachyos
?It would be nice to be able to try frame generation with games from egs under lutris, for example.
I tried to do this myself but didn't manage to make it work.
What I tried:
proton-cachyos/wine-optical-flow.patch
towine-cachyos
.wine-cachyos
.proton-cachyos
for dxvk, vkd3d, nvapi versionsThis allows launching games without issue but frame generation is not detected.
I'm guessing at least part of the problem is it is missing the equivalent last step from
proton-cachyos/proton-optical-flow.patch
which copies the newnvofapi{,64}.dll
files into the system prefixes.But I don't know where to do that for
wine-cachyos
.I also did try just selecting
proton-cachyos
as the runner (after the symlinks) but that causes egs to immediately crash to the bug report dialog, so that probably won't work as a solution.The text was updated successfully, but these errors were encountered: