mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-22 07:54:15 +01:00
Update README.md
Add uninstall instructions
This commit is contained in:
parent
65ae9af81c
commit
c40c22b0db
24
README.md
24
README.md
@ -32,10 +32,30 @@ winecfg
|
|||||||
|
|
||||||
Verify that your application uses DXVK instead of wined3d by enabling the HUD (see notes below).
|
Verify that your application uses DXVK instead of wined3d by enabling the HUD (see notes below).
|
||||||
|
|
||||||
In order to remove DXVK from a prefix, remove the DLLs and DLL overrides, and run `wineboot -u` to restore the original DLL files.
|
|
||||||
|
|
||||||
Tools such as Steam Play, Lutris, Bottles, Heroic Launcher, etc will automatically handle setup of dxvk on their own when enabled.
|
Tools such as Steam Play, Lutris, Bottles, Heroic Launcher, etc will automatically handle setup of dxvk on their own when enabled.
|
||||||
|
|
||||||
|
### Uninstall
|
||||||
|
In order to remove DXVK from a prefix, remove the DLLs and DLL overrides, and run wineboot -u to restore the original DLL files.
|
||||||
|
```
|
||||||
|
export WINEPREFIX=/path/to/wineprefix
|
||||||
|
rm $WINEPREFIX/drive_c/windows/system32/d3d8.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/system32/d3d9.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/system32/d3d10core.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/system32/d3d11.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/system32/dxgi.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/syswow64/d3d8.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/syswow64/d3d9.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/syswow64/d3d10core.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/syswow64/d3d11.dll
|
||||||
|
rm $WINEPREFIX/drive_c/windows/syswow64/dxgi.dll
|
||||||
|
wine wineboot -u
|
||||||
|
wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v "d3d8" /d native,builtin /f >/dev/null 2>&1
|
||||||
|
wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v "d3d9" /d native,builtin /f >/dev/null 2>&1
|
||||||
|
wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v "d3d10core" /d native,builtin /f >/dev/null 2>&1
|
||||||
|
wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v "d3d11" /d native,builtin /f >/dev/null 2>&1
|
||||||
|
wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v "dxgi" /d native,builtin /f >/dev/null 2>&1
|
||||||
|
```
|
||||||
|
|
||||||
#### DLL dependencies
|
#### DLL dependencies
|
||||||
Listed below are the DLL requirements for using DXVK with any single API.
|
Listed below are the DLL requirements for using DXVK with any single API.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user