On savegame load Skyrim warned about running out of vram.
Set VRAM by below steps:
Check amount with or or or
Set videomemory to 2048
Browse to
HKEY_CURRENT_USER\Software\Wine\Direct3D\ and change video memory size to your videocards amount of memory in MB
Add some more performance by running:
and tick Enable CSMT for better graphic performance, like below:
https://raw.githubusercontent.com/wiki/ ... g-csmt.png
Start with WINEDBG=fps to show fps in terminal when game runs.
Set VRAM by below steps:
Check amount with
Code Select all
grep -i --color memory /var/log/Xorg.0.logCode Select all
grep -i --color vram /var/log/Xorg.0.logCode Select all
lspci -v | grep -i VGA -A 10 Code Select all
echo $(dmesg | grep -o -P -i "(?<=vram:).*(?=M 0x)")$" Mb"Code Select all
WINEARCH=win32 WINEPREFIX=~/.wine32 winetricks settings Code Select all
WINEARCH=win32 WINEPREFIX=~/.wine32 wine regeditHKEY_CURRENT_USER\Software\Wine\Direct3D\ and change video memory size to your videocards amount of memory in MB
Add some more performance by running:
Code Select all
WINEARCH=win32 WINEPREFIX=~/.wine32 winecfghttps://raw.githubusercontent.com/wiki/ ... g-csmt.png
Start with WINEDBG=fps to show fps in terminal when game runs.
Code Select all
cd "/home/az/.wine32/drive_c/Program Files/Steam/steamapps/common/Skyrim/" && WINEARCH=win32 WINEPREFIX=~/.wine32 WINEDLLOVERRIDES=Scrrun=n WINEDEBUG=fps wine "/home/az/.wine32/drive_c/Program Files/Steam/steamapps/common/Skyrim/Enderal Launcher.exe"
