protonscr

Path of Exile

protonopen appid 238960Game compatibility - UnofficialRegression
ValveSoftware/Proton#58 · opened 2018-08-22 by DataBeaver · updated 2026-07-29 · 388 comments · github · game page · search this game
1 matching comments, n / p to jump
DDataBeaver 2018-08-22 github

It gives a dialog saying "Failed to create WIC factory" followed by a bunch of reference count errors. The behaviour matches this bug in the Wine bug tracker.

Eernstp 2018-08-22 github

The game comes further with DX9 but then has a lot of other issues, and bad performance.
From the winehq.org bug it looks like there's only very small changes needed to get the DX11 version running fine!

DDataBeaver 2018-08-22 github

It runs with DX9 but performance is indeed bad and it crashes frequently. In one hour-long session I had it crash four or five times. I've tried getting the DX11 version work on Wine and DXVK but after applying that CoInitialize patch it freezes at a black screen on startup. I was hoping Proton might do something differently and make it work.

Ddumpsters 2018-08-22 github

According to this it only needs one line change in wine nowadays, not sure how much it affects other games

00xjon0 2018-08-22 github

Note that PoE isn't whitelisted so I doubt if we get any official support just yet.

I was recently ironing out a process to get PoE running for more people and posted those steps here

The gist is that PoE runs great with DX11 (DXVK) with a shader patch. Right now Proton is just running it in DX9 mode that doesn't work for very many people. We need to dig into this new configuration they've provided and figure out how to get DXVK enabled and how to inject custom patches.

DDataBeaver 2018-08-22 github

I realize it isn't whitelisted but was hoping to raise interest in the game by opening the issue. Maybe if we can figure out the problem here it will result in the game being whitelisted sooner.

PoE does not run great with DX11 for me. In fact it does not run at all. The furthest I've got is avoiding all the outright crashes on startup, but the game only hangs at a black screen (it actually only renders a single black frame), eating 100% of CPU time. I don't know if it's trying to load something in the background but even after an hour of waiting it hasn't gotten anywhere. Using Lutris, PlayOnLinux or plain Wine does not make a difference. The DXVK async patch does not make a difference. Trying to use Wine's builtin D3D 11 implementation errors out with "Failed to create deferred context".

I've tried using WINEDEBUG, DXVK_LOG_LEVEL, even gdb, but so far I'm completely clueless about what's wrong. If you have any ideas for what I should check I'd love to hear it.

00xjon0 2018-08-22 github

@DataBeaver What is your OS, graphics card model and graphics card driver version?

DDataBeaver 2018-08-22 github

Debian unstable, GTX 980, 396.51. The Lutris DXVK howto mentions that 396.45 is missing a Vulkan extension; I figured if that was the case with this version as well, DXVK would simply fail to initialize. I've tried a few different builds of Wine 3.13 and 3.14, both staging and not. Staging does not seem to make a difference as long as the CoInitialize patch is present.

00xjon0 2018-08-22 github

@DataBeaver That is a Maxwell chip that supports Vulkan & DX11 so there's likely a software/configuration problem somewhere. Are you using a version of the driver that comes with the NVIDIA control panel? If so, does it indicate any problems?

DDataBeaver 2018-08-22 github

You mean nvidia-settings? I have it installed and can't find any problem indicators. I can also successfully run vkmark (https://github.com/vkmark/vkmark) so Vulkan appears to be working.

Eedmondo 2018-08-22 github

My experience with PoE DX11 (AMD Radeon RX470) and wine is very good with following prerequisites applied:

  • Must have: WIC patch (CoInitialize)

  • Variant 1: DXVK 0.70 - strong shader compilation stuttering at first until cache ready, but then very stable and good performance (with occasional shader compilation when entering new areas)

  • Variant 2: Patched DXVK 0.65 with shader hack (https://github.com/jomihaka/dxvk-poe-hack) to avoid stuttering - some glitches and flickering during compilation but no stuttering and good performance
    DXVK_USE_PIPECOMPILER=1 DXVK_USE_PLACEHOLDER_SHADERS=1 DXVK_HUD=1 WINEPREFIX=/mnt/storage/wine/poe wine64-staging-3.13 PathOfExile.exe --nologo

I could be interesting to port the hack to the new DXVK 0.70 config system and maybe allow to activate it for very stuttering games when no cache is ready.
EDIT: Or a much better and simpler implementation as suggested here https://github.com/doitsujin/dxvk/pull/564#issuecomment-413160155

DDataBeaver 2018-08-22 github

I downloaded the Unigine Heaven benchmark (https://benchmark.unigine.com/heaven) and it works with both DXVK and Wine's builtin D3D 11 support. So whatever the issue with Path of Exile is, it seems to be specific enough to affect only some programs but not others.

DDataBeaver 2018-08-22 github

By applying the patchset d3d11-Deferred_Context from wine-staging Wine's builtin D3D 11 implementation now behaves the same way as DXVK. In other words, it hangs on a black screen at startup.

DDataBeaver 2018-08-22 github

After yet more staring at logs and scouring the web I found out that the windowscodecs-* patches from wine-staging are also necessary. The game now launches up to the login screen at least, with both DXVK and Wine's D3D 11. I'll report when I've had time to actually play it and test stability and performance.

Why the Lutris approach didn't work for me when it does for many others is still a mystery.

Jjaccarmac 2018-08-23 github

I don't even get the dialog to pop, and DX11 should be possible to use based on my LLVM install.

I ran PoE under regular old Wine a couple years back, but it involved a lot of tweaking. Excited to figure out how to get it working again inside Proton.

Eernstp 2018-08-23 github

Let's not turn this into a support forum for PoE on all different versions of Wine. This is about Proton...

DDataBeaver 2018-08-23 github

I didn't have a lot of time to test stability yet but I ran a few maps and didn't see any problems.

I did some more investigation to find the minimal set of changes required to get the game working. It boils down to this (with Wine 3.14 as a starting point):

  1. The CoInitialize patch. I created my own version which handles the call in a smarter way: https://gist.github.com/DataBeaver/5e1f1a256c7f1abb339831fc2b72a5db

  2. windowscodecs-32bppPRGBA from wine-staging. It pulls in most of the other windowscodecs-* patches as dependencies, but I verified the game does not work without this particular patchset.

  3. DXVK. Wine's own D3D 11 lacks support for deferred contexts, but using DXVK bypasses this issue. The placeholder shader hack is optional.

Looking at the Wine source tree included in Proton as a submodule, it does not include either the CoInitialize or windowscodecs patches. The base Wine version is fairly old (3.0-rc1 according to git tags) so I don't know if something else would be required on that version as well. DXVK is included and although it's version 0.65 I have no reason to believe it wouldn't work.

Cc0r73x 2018-08-24 github

I downloaded the proton source and applied the patches that @DataBeaver is talking about. After the CoInitialize and windowscodec patches the game works flawlessly with DX11. However the 0002 winecodec patch failed but after applying it manually it wasn't a problem.

GGregSutcliffe 2018-08-25 github

@c0r73x any chance you could share your Proton dist build? I'm trying to build it with the PoE patches myself, but I'm hitting build errors with winegcc...

Cc0r73x 2018-08-25 github
GGregSutcliffe 2018-08-25 github

@c0r73x thanks, I can confirm that works for me too. Appreciated!

00xjon0 2018-08-26 github

@c0r73x Thanks for sharing! Makes testing easy.

Unfortunately that build is only partially successful for me.

PoE will load and run with DX11 (DXVK) now, but the coinitialize patch isn't working as well as the old replacement shaders patch. I get lots of stuttering and freezing with this in Steam, whereas the shader patch has PoE running near flawlessly in Lutris+DXVK for me.

EDIT: Tried again with different driver version but still no luck with the shader stuttering. I'm also getting some odd graphics behavior with the in-game item filter and atlas now.

EDIT: The other version (shader patch + DXVK + Lutris) is otherwise still working great for me. I can't figure out why the Proton configuration has such worse performance.

Cc0r73x 2018-08-26 github

@tainium did you try to disable steam overlay?

00xjon0 2018-08-26 github

@c0r73x Yes.

Cc0r73x 2018-08-26 github

@tainium Ok, I applied the shader patch to dxvk in proton and you are right. The game runs much better with it. The microstutter form playing necro with alot of pets is gone :p

Here is the patched dxvk files if anyone wants it https://mega.nz/#!nnBylIpB!0KNQwsTf48V861IoFGPBtbZ_sZtX4LRDSA3FdEampnM

00xjon0 2018-08-26 github

@c0r73x Thanks for the new patch, will test it ASAP. Yeah, its like the coinitialize patch definitely enables DXVK and better performance than without it, but the full shader patch takes performance a step up.

GGregSutcliffe 2018-08-26 github

@c0r73x Confirmed, that's a huge improvement - thanks! Since you have builds working, any chance you could comment on #494? Then I can stop bugging you for builds :)

Kkakra 2018-08-28 github

As confirmed by @DataBeaver the game needs the windowscodecs patch series from staging to work, probably because textures are stored with some uncommon image formats in the data files. I'm not sure if CoInitialize is really needed: I see the same crash with or without it if windowscodecs is missing.

With DXVK and windowscodecs, I can play sessions as long as multiple hours, memory usage settles around 2.7G RAM. The original wined3d with DX9 goes up above 3.5G memory usage (in less than one hour), then starts missing textures and text characters, then usually crashes in the loading screens. So IMHO, falling back to DX9 support is no option.

Proton should include the windowscodecs patch series. I'd prefer if these would be upstreamed to vanilla wine because it is a quite big patchset and would make rebasing Proton to later wine versions more difficult.

00xjon0 2018-08-31 github

Well it was fun while it lasted. Then Delve introduced fancy new graphics features...

I had PoE running well in both Lutris w/DXVK and SteamPlay before the update. Both environments updated the game but then failed to launch. The game starts up with the gear logo but then (mostly)freezes and never loads any actual 3d graphics. I have to either remote in to my machine and kill the process or do a hard reboot. So far none of the launch options seems to make any difference.

Ideas?

I'll try cleaning out any artifacts of our patches to test with a clean environment and then perhaps re-patch.

DDataBeaver 2018-08-31 github

Same for me. I was planning to start the league on Windows anyway, so I'll do some more debugging in a week or two unless someone beats me to it.

Kkakra 2018-08-31 github

@tainium Pressing Ctrl+Alt+Esc should bring up the skull mouse pointer to kill a window.

00xjon0 2018-08-31 github

It will at least launch in DX9 mode, if you can get there. Deleted these two areas to get back to DX9:
steamapps/common/Proton*
steamapps/common/compatdata

Anyone have the time, opportunity and energy to build and share a patched version of the latest Proton?

Kkakra 2018-08-31 github

I'm going to try rebasing Proton onto Wine 3.14 but it will take a while setting the environment up... You can follow my https://github.com/kakra/wine to see the update.

Kkakra 2018-08-31 github

I already rebased the esync patches but the full-screen hacks are more difficult.

Eedmondo 2018-08-31 github

@tainium How far do you come with the launch? I've no problem to come to the login mask with dx11.

EDIT: with wine-staging 3.13

00xjon0 2018-08-31 github

The game starts up with the gear logo but then (mostly)freezes and never loads any actual 3d graphics. I do see the 'login mask' overlay but cannot interact with it due to the freezing. Still trying various fixes and tricks until @kakra saves us all :)

GGregSutcliffe 2018-08-31 github

I can load up and click login via the patched DVXK @c0r73x provided a while back. In the queue now, position 28000 :P

00xjon0 2018-08-31 github

@GregSutcliffe Can you please share more about your configuration so that we can find the problem?

Eedmondo 2018-08-31 github

Same here as for @GregSutcliffe. 3D is OK, waiting in the queue.

  • wine-staging 3.13 with WIC patch
  • dxvk 0.65
  • AMD Radeon RX 470 (POLARIS 10)
  • Mesa drivers from git
info:  AMD RADV POLARIS10 (LLVM 8.0.0):
info:    Driver: 18.2.99
info:    Vulkan: 1.1.70

GGregSutcliffe 2018-08-31 github

@tainium Sure, let me know if I missed anything.

Archlinux, kernel 4.17.11-6 using CK kernel
Nvidia-ck 2:396.51-2 (GeForce GTX 970)
Mesa 18.1.6-1
Intel(R) Core(TM) i5-6600 CPU @ 3.30GHz
16Gb Ram
Proton / DXVK as per @c0r73x
GGregSutcliffe 2018-08-31 github

Made it to Lioneye's, seems to be OK - usual stutter on loading new textures but otherwise playable

Kkakra 2018-08-31 github

With my current wine patches I can play PoE... But I have to wait at the login screen for the hard disk to calm down, otherwise it crashes.

00xjon0 2018-08-31 github

@kakra I'd be happy to test if you have a package you can distribute. So far I've had no luck with any tricks to get DX11 working.

Kkakra 2018-08-31 github

@tainium I could offer you precompiled Gentoo packages... Not sure if they would work on your system... It's a matter of "tar xf" them. OTOH, you could use your distribution's package build system to add my patches to your official distribution packages.

Sstudiobigli 2018-08-31 github

I was having the same issue about gears not moving and the game hanging my PC. Edited my production_Config.ini file for the game and changed directx_version= to 9, borderless_windowed_fullscreen=false, fullscreen=false. From here I verified that the game would load for me, changed to direct9ex, that worked, and then changed to directx11, and that now works in windowed mode (not tried changing back to fullscreen yet but been itching to play all day so that comes first).

using c0r73x's proton build and patched DXVK as provided earlier in the thread, nvidia-396 drivers on a 1050 Ti.

edit: Fullscreen, Fullscreen windowed and changing resolutions all seem to be a culprit here. So long as I am windowed and set the resolution I want in the config file the game handles perfectly fine.

GGregSutcliffe 2018-08-31 github

I'm definitely seeing memory issues, I've had to restart 3 times during the run to act 2, as the framerate drops after 3-5 zones. What launch options are people using?

Sstudiobigli 2018-09-01 github

EDIT: Probably just got lucky for a while, same issues eventually showed up but seemed to take longer to appear.

@GregSutcliffe I was using --gc 2 for a time and getting similar issues, I've sinced turned this off and it seems to have alleviated that problem. I've had a crash on the Weaver fight but judging by the PoE reddit that could just as easily be a client problem right now. Other than that, --waitforpreload is enabled.

TTrueNeutralDesu 2018-09-01 github

Fullscreen, Fullscreen windowed and changing resolutions all seem to be a culprit here. So long as I am windowed and set the resolution I want in the config file the game handles perfectly fine.

I can't make the game to work in a resolution other than native (1920x1080 in my case). Whenever I try to change resolution in the config file it just hangs on startup, no matter what combination of 'windowed', 'fullscreen' or 'windowed fullscreen' I choose. What's your config options for those? Smaller resolutions really help with performance so I'd like to have that back.

Sstudiobigli 2018-09-01 github

@TrueNeutralDesu I've just experimented with changing the resolution to something bigger and yeah, exact same problem. I was playing at 1920x1080, but it doesn't take up enough space on my desktop and I wanted to try it at 2560x1360, but the exact same hangup issues have appeared.

00xjon0 2018-09-01 github

@presidentbiggles FTW...this is the only working solution for me. Thanks for sharing. I'll post to POE forums. I have exactly the same experience that you've described. Note that I'm referring to my Lutris config rather than Proton that refuses to do anything other than DX9.

GGregSutcliffe 2018-09-01 github

@presidentbiggles thanks, yeah, I see the same, removing it isn't helping much.

Llogan001 2018-09-05 github

it seems that PoE started to work with Lutris since yesterday (after lustris update) with DX11/DXVK 0.71.
So the game should work with DX11 on steam also

GGloriousEggroll 2018-09-05 github

Lutris is not steam. It uses user made scripts and custom patched wine builds. PoE will not run on proton until the CoInitialize patch is added.

it may run in dx9 slow, but it's a slow stuttery mess.

Kkakra 2018-09-06 github
Kkakra 2018-09-06 github

@GloriousEggroll The CoInitialize patch is not enough: My build includes it but PoE won't start (at least this is true for DX11 mode). You also need the windowscodecs patches from staging which I will add soon to my build.

GGloriousEggroll 2018-09-06 github

@kakra you're right i forgot to mention that. also the dxvk poe hack patch + config works incredibly well for reducing stutter

Rryanmusante 2018-09-06 github

I realize this has been answered before elsewhere but I can't find the link. What are the plans for proton to incorporate some of staging's wide array of patches? Is PBA included with esync? Or is proton itself a fork of wine /staging with considerations for inclusions based on stability?

GGloriousEggroll 2018-09-06 github

@ryanmusante proton is a fork of wine with custom patches by valve. esync is included, pba is not.

Rryanmusante 2018-09-06 github

@GloriousEggroll btw, thank you for your YouTube videos and many tutorials. I first found you when I was troubleshooting grim dawn on archlinux many moons ago.

Kkakra 2018-09-06 github

@GloriousEggroll @tainium Here's my updated build which enables PoE to run with Proton: https://github.com/kakra/wine/releases/tag/wine-proton-3.7-unofficial-1

This now includes the windowscodecs patches.

PoE seems to be very sensitive to window size changes. Also, I recommend to wait for the hard disk to calm down before logging in. I had 60 fps at FHD and around 30-35 fps at 4k. Similar to The Witcher 3 the game chokes every few seconds (looks like frame drops or slow downs, not visible in the fps graphs, it may be related to esync but it's not really an issue for playing, the stutters due to shader compilation are much more apparent, tho this flattens out after some minutes of gameplay). I had success with disabling the Steam overlay and setting my window manager to remember the window size. If it freezes, hit Ctrl+Alt+Esc, wait some seconds for the skull mouse pointer to appear, then kill the window by clicking it. The patches include pulseaudio updates that allow you to switch to your headset from within the game (Proton games can see each pulseaudio device separate with this).

If you want to use the shader-hack version of DXVK you have to copy it to the prefix on your own, DXVK is not included in this build (and won't be). It simply reuses the DXVK version that Proton provides.

@ryanmusante PBA causes major slowdowns for me in many games. Probably it's not working well with the nvidia binary blob. From some very unscientific tests esync seems to cause fps choking in some games for me, TW3 and PoE included. But I didn't cross-check that yet.

Rryanmusante 2018-09-06 github

@kakra The issue I have with PoE and with many of the other titles, is deciding whether or not to use steam-native or to stick with steam runtime libraries. For some games, it seems like steam-native gives a performance boost while for others, there is an incompatibility which prevents the game from loading.

https://wiki.archlinux.org/index.php/Steam/Troubleshooting#Steam_native_runtime

What is the recommendation for proton and is this only an issue for people running Arch?

Kkakra 2018-09-06 github

@ryanmusante I'm not sure how this is an issue here, as the runtime is wine-proton for PoE. OTOH, at least in Gentoo I had no longer any issue with this. You can use the official Steam runtime and set STEAM_RUNTIME_PREFER_HOST_LIBRARIES=1 to prefer host libs over steam-provided libs.

Kkakra 2018-09-08 github

@GloriousEggroll @tainium Here's my updated build rebased to Wine 3.12. It includes the refined CoInitialize patch by @DataBeaver for running PoE in DX11 mode:
https://github.com/kakra/wine/releases/tag/wine-proton_3.7-3.12-unofficial

PoE performance may be a little better. Windows resizing was not tested this time.

Kkakra 2018-09-11 github

@tainium Here's a (sort of) crappy recording of PoE in my wine proton_3.7 rebased to 3.12 build. Did something change in DXVK shipped with Proton? Because I see shaders loading very late, it results in black models.

Other than that, there's the bug of not being able to login at first try (usually sometimes but everytime when recording, maybe IO related), and of course the usual stutter in the city. Once preloading and shaders finished, it runs pretty well (given I could only do software encoding and played at 4k, recording is downscaled to FHD due to high CPU usage otherwise). Without recording, the game stutters calm down much faster. Usually there's no problem with lags after leaving the city and entering an area.

https://youtu.be/7atm6lGioGs

Also, there's an FPS dip every few seconds which I only experienced lately. I think this is since I integrated esync into my own build (which was previously based on vanilla wine 3.14). I don't think that's shader related...

(the gears logo always stutters a lot)

Kkisak-valve maintainer 2018-09-14 github

Path of Exile - crashes after ~15m gameplay

Issue transferred from https://github.com/ValveSoftware/Proton/issues/1447.
@zaggynl posted on 2018-09-14T15:33:31:

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile
  • Steam AppID of the game:238960

System Information

I confirm:

  • [V ] that I haven't found an existing compatibility report for this game.
  • [V] that I have checked whether there are updates for my system available.

Steam debug log: https://gist.githubusercontent.com/zaggynl/6d55e984035244ec54274db14a2f77ea/raw/f2ab23db3dace4c6032ffb6aa6389a03ad364240/poe_log_zaggynl

Symptoms

Game crashes to desktop after about 15m of playtime
PoE settings:
http://i.imgur.com/8C2p65Y.png
http://i.imgur.com/9TlwF2U.png

Zzaggynl 2018-09-14 github

@kakra kakra

GloriousEggroll tainium Here's my updated build rebased to Wine 3.12. It includes the refined CoInitialize patch by DataBeaver for running PoE in DX11 mode:
https://github.com/kakra/wine/releases/tag/wine-proton_3.7-3.12-unofficial

PoE performance may be a little better. Windows resizing was not tested this time.

Tried this by renaming current dist and dropping this one in my Proton Beta folder but PoE errors on launch and asks if to switch to DX9.

Kkakra 2018-09-14 github

@zaggynl Do not drop the existing folder... It contains DLLs not shipped with my version. Make a copy-backup instead. This particular error occurs because DXVK is missing then, I guess. PoE is not compatible with wined3d-DX11 as far as I can tell.
EDIT: As noted by @DataBeaver at this is true for my build.

PS: You should switch PoE to DX11 mode before playing.

DDataBeaver 2018-09-14 github

PoE works with Wine's D3D11 (as of Wine 3.14) after the patchset d3d11-Deferred_Context from wine-staging is applied (in addition to the patches mentioned previously).

Kkakra 2018-09-14 github

@DataBeaver Maybe but that patchset is not in my build currently... And it's even not 3.14

DDataBeaver 2018-09-14 github

All right, just wanted to note that in a more general case it works with wined3d.

Zzaggynl 2018-09-15 github

PoE appears to work well with this Lutris install script (needs Lutris account): https://lutris.net/games/path-of-exile-standalone-w-dxvk/installer/edit
No crashes in about 45m of playing.
PoE launch arguments: --waitforpreload --nologo --nodx9ex --gc2
changed Wine arch. to 64 bit
changed Runner to esync-nopulse 3.15
DXVK to 0.72

TTheVE 2018-09-20 github

Game will not start using dx11.

Will work fine under dx9 using Proton. But there are constant crashes. Once the game hits between 3-3.2 gb memory usage it will crash which for me us usually only two zones.

My favourite game and I can't play it. :(

JJanhouse 2018-09-20 github

@TheVE please read above. If you compile the Proton version that @kakra linked then it will work with DXVK just fine.
Compiled it a day ago and it works on Archlinux with Nvidia drivers.

TTheVE 2018-09-20 github

@Janhouse I've tried the precompiled version from @kakra but get a hard lockup when the gears show up. Not sure what to do next.

Running Solus, 1700x, RX480 on latest mesa.

JJanhouse 2018-09-20 github

@TheVE, compile yourself because I don't think that it is portable. Not sure. Also try deleting PoE config file in the wine prefix.
Also I only used the custom Proton. I kept the Valve distributed DXVK version.

Kkakra 2018-09-20 github

@TheVE Please look if you see something in dmesg when it locks up... You may need to SSH into the machine. If it is something not portable due to processor optimization I used, it should show up there. Otherwise it may be related to the graphics driver which is NVIDIA proprietary here... I'm seeing such a lock up once in a while, too. Kill the game with Ctrl+Alt+Esc (a skull mouse pointer should show up after a few seconds, then click the game window). Solution to this lockup here was to use windowed full-screen and not resize the window while in-game (use the config file). A window manager that can force window position/size may help.

JJanhouse 2018-09-20 github

@kakra I did notice that if I use windowed mode it mostly crashes, maybe Gnome resizes it at some point? I just use borderless windowed fullscreen and it works fine.

Also if it freezes and you don't have that fancy ctrl+alt+esc shortcut, you can switch to other tty with Ctrl + Alt + F2, log in there and kill from there. It doesn't switch immediately (takes about 40 sec) but it does get there eventually.

Kkakra 2018-09-20 github

@Janhouse Sorry, actually I meant borderless windowed fullscreen. ;-)

I'm using ctrl+alt+esc since 20 years now, it should work out-of-the-box, I don't think this is some special KDE feature (I also used it in plain X and fluxbox/openbox). But it takes also around 40 seconds to appear when PoE locked up.

But I just found that Gnome may be overriding ctrl+alt+esc with another function... If switching to console works, then that's the way to go. :-)

EDIT: Just tested, Ctrl+Alt+Esc just calls xkill... So you may get the fancy kill cursor by defining a global shortcut that runs xkill.

EDIT2: It's actually a KDE shortcut I'm using since years (it may have been a global default shortcut in SuSE linux back in the old days, not sure)... Here's how to achieve something similar in Ubuntu:
https://www.maketecheasier.com/kill-unresponsive-application-in-ubuntu/

JJanhouse 2018-09-20 github

@kakra, on Gnome there is problem that after killing frozen PoE, gnome session crashes as well. :disappointed:

Kkakra 2018-09-20 github

@kakra, on Gnome there is problem that after killing frozen PoE, gnome session crashes as well.

What a nice feature... :-)

TTheVE 2018-09-21 github

I'm a bit of compiling noob but it appears I might not be able to do it on Solus?

checking whether gcc -m32 works... no configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries. make: *** [makefile:17: build/wine32] Error 1
I can't find the dev libraries I need.

JJanhouse 2018-09-21 github

@TheVE another option is to install standalone PoE through Lutris. Then you can just use GUI to install compiled wine "esync-3.15" (with esync and pba and PoE patches) and also choose recent DXVK version.
It actually has install script available so most of it will happen automatically.
It also helps installing Windows Steam version if you wish. Or you can run PoE without steam, you just have to write to PoE tech support in forums to have e-mail address assigned to the account to be able to log in within the game.
I suppose it is also easier to set up PoE Trade Macro and Path of Building using Lutris.

Kkakra 2018-09-21 github

@TheVE You need 32-bit devel libs, you should look up the documentation of your distribution how to do that, and the wine wiki also has some hints (but don't use the configure instructions there, my makefile should do that properly). But I don't think that building yourself would fix the freeze as it sounds like the known problem. You would have an optimized build for your CPU, tho, then, which can have visible performance benefits in wine.

Kkakra 2018-09-23 github

I've updated my build which should improve things but the freeze after window resize is probably still there:
https://github.com/kakra/wine/releases/tag/wine-proton_3.7-3.16-unofficial-1

RRodrigoHahn 2018-09-26 github

EDIT: Doh! I was playing with user_settings (WINEDEBUG & DXVK_LOG_LEVEL "info")... renaming the file did the trick - so it kinda was a logging issue after all, hah! Thanks for being my rubber duck, I guess :)

EDIT2: well scratch that, it happened again. Seems to be after a random ammount of time, I was able to play a good 1h without it appearing.

Hi @kakra, I tested your last build and got it working, thank you very much. FPS between 40~140 when idle (with some stutter) on a GTX1060.
Problem is, after a few minutes of playing, it starts to drop frames massively whenever I move the mouse cursor. If I click or hold to walk (and dont move the cursor), it keeps steady FPS. However, if I move the cursor, it tanks hard and goes as down as 13 FPS. Maybe some logging code? I looked on the POE wiki for a way to maybe force hardware cursor, but didn't find any. This is on Ubuntu 18.04.1 btw, with a standard Kensington USB mouse.

Kkakra 2018-09-26 github

@RodrigoHahn Yes, logging is a performance killer... Absolutely turn it off if not debugging problems. :-)

The stutter is related to shader compiling. There's a hacked DXVK variant which makes shader compilation asynchronous but it results in black 3D models until the shaders are done. I've never tried it because I don't like the idea of this (black 3D models) but everyone who tried reports it helps the stutters.

GGregSutcliffe 2018-09-26 github

@kakra the new build is working great for me, thanks very much.

DXVK 0.80 has a new caching system for the shaders which has helped at lot, at least for me. With your proton and that version of DXVK it's almost flawless, at least until the garbage collection makes me restart PoE (after 5 zones or so, not too bad)

Thanks!

Kkakra 2018-09-26 github

@GregSutcliffe Yes, I just noticed this morning there's DXVK 0.80 available and will test it later this week. I've seen occassional crashes during loading screens in Shadow of Tomb Raider with this version which weren't reproducible on a second try, tho.

Kkakra 2018-09-26 github

@GregSutcliffe BTW: I'm currently working on patches improving latency when running under a kernel that supports MuQSS (that's the CK or PF patchsets), maybe even integrating Wine with Feral's GameMode.

GGregSutcliffe 2018-09-26 github

@kakra as it happens, I also run the CK kernel. Happy to test dev builds.

Kkakra 2018-09-26 github

@GregSutcliffe I've already posted PRs to GameMode which provide better support for running your whole Steam client under GameMode so it would also catch Wine games. But I think internal wine components should be treated differently, not everything should run with the same high scheduling priority. So the GameMode PRs already remove the Steam client itself and wineserver from being handled by GameMode. My current Proton build you downloaded has support for putting the wineserver into SCHED_FIFO mode, but I'm currently working on a more automatic activation (where you don't need to configure something manually aside from installing GameMode and don't need to run the whole Steam client under GameMode, and wineserver uses SCHED_ISO instead which is an unprivileged operation).

Kkakra 2018-09-26 github

@GregSutcliffe Here's a preview of my SCHED_ISO changes:
https://github.com/kakra/wine/releases/tag/wine-proton_3.7-3.16-unofficial-2

Kkakra 2018-09-26 github

@DataBeaver @TheVE @Janhouse Here's another update... Additionally to the previous, it also includes PBA and d3d11-Deferred-Contexts. This enables playing without DXVK but it has a lot more issues that way (inconsistent FPS, visible short freezes).
https://github.com/kakra/wine/releases/tag/wine-proton_3.7-3.16-unofficial-3

RRodrigoHahn 2018-09-28 github

Hi @kakra, just reporting: I've disabled FXAA on the NVIDIA XServer Settings app, and I've been able to play for 3+ hours today, no crashes nor annoying frame drops.

Kkakra 2018-09-28 github

@RodrigoHahn You mean you removed "enable FXAA"? If you had that enabled, it force-enabled FXAA in all games (as an enhancement for games that don't have such an option). It does more harm than good, I'd recommend against using it anyways and instead resort to application-specific overrides. If you don't enable this setting, games can still enable FXAA on their own. So it's not a blacklist switch as which you may have perceived it.

Since my build also includes esync, I recommend checking LIMIT_NOFILE and maybe raise it to prevent game crashes after some amount of time. You should see something like eventfd: cannot open file or similar in your Steam logs if that happened (it's somewhere in /tmp/dumps probably).

RRodrigoHahn 2018-09-28 github

@kakra Yeah, I must have enabled it when first tinkering with Proton. I've stumbled on it when looking to unbork my steam interface fonts, which were all blurry. Disabling it made'em nice and crisp again.
As for LIMIT_NOFILE, i'll check when I get home later today. Thanks again.

TTheVE 2018-10-02 github

@kakra I might be out of luck playing POE. :(

Crashes on the gears at game start. Sound continues in the background. But system is unresponsive. Cannot ctl+alt+esc or switch tty.

I can ssh into the machine but cannot get actions to show on the system. Looking at dmesg it is some sort of GPU crash?

`[ 102.096105] [drm] dce_get_required_clocks_state: clocks unsupported disp_clk 896973 pix_clk 592000

[ 1036.359130] [drm:amdgpu_job_timedout [amdgpu]] ERROR ring gfx timeout, last signaled seq=298090, last emitted seq=298092

[ 1036.359133] [drm] GPU recovery disabled.`

Kkakra 2018-10-02 github

@TheVE Okay, this is a graphics driver issue probably related to the updated Vulkan stack within DXVK/Wine. Some ideas:

  1. Could you enable GPU recovery somehow?
  2. If you're using DXVK: Have you looked for similar issues in the DXVK project? Maybe it helps to upgrade/downgrade DXVK or fiddle with the DXVK settings.
  3. I'll follow up with an updated wine-proton build which allows running without DXVK - you could try that. Performance looks pretty good with that (uses PBA and DX11 Deferred Contexts).

Doing a clean build here will take some minutes...

Kkakra 2018-10-02 github

@TheVE Here's the updated build:
https://github.com/kakra/wine/releases/tag/wine-proton_3.7-3.17-unofficial-2

You may also want to check Feral's GameMode and run the game in GameMode enabled.
https://github.com/FeralInteractive/gamemode

BTW: Valve has updated Proton to officially include DXVK 0.80 (including a required hotfix). You may want to let Steam verify the Proton files (to restore the current Beta including the DXVK update), then re-apply my build ontop of that.

JJanhouse 2018-10-02 github

@TheVE I had the same problem before. I recompiled wine, dxvk, tried all kinds of things and it failed. And then I created new wineprefix. That solved the problem.
I did not change wine or dxvk, just started new wineprefix and that solved the problem for me. I don't run PoE from Steam and with Proton, I run standalone game with Wine and it works great without crashes or memory problems. It can run whole day without crashes or slowdowns. But I also tested Steam version some days ago by compiling Proton from @kakra repo and it also seemed to work fine.

Kkakra 2018-10-02 github

@Janhouse This is a known issue if you switch between different wine versions in the same prefix: It can leave wrong DLL redirects behind, e.g. if you used staging with CSMT enabled, then went back to vanilla, the DLL redirect is still in place and uses an possibly outdated CSMT wined3d API.

I don't think this is the case here for @TheVE as the prefix of the game is private and created by Steam. Unless @TheVE tried to run custom (non-proton) wine versions in the prefix, the prefix should be clean and fine.

@Janhouse In the end, the question to ask it: Was it really the same problem you had? I mean with the same dmesg output? Or was it just freezing at the logo due to some other issue?

JJanhouse 2018-10-02 github

It could have been other issue but I think it is still worth trying to
recreate the prefix.

On Tue, 2 Oct 2018 at 12:12, Kai Krakow [email protected] wrote:

@Janhouse https://github.com/Janhouse This is a known issue if you
switch between different wine versions in the same prefix: It can leave
wrong DLL redirects behind, e.g. if you used staging with CSMT enabled,
then went back to vanilla, the DLL redirect is still in place and uses an
possibly outdated CSMT wined3d API.

I don't think this is the case here for @TheVE https://github.com/TheVE
as the prefix of the game is private and created by Steam. Unless @TheVE
https://github.com/TheVE tried to run custom (non-proton) wine versions
in the prefix, the prefix should be clean and fine.

@Janhouse https://github.com/Janhouse In the end, the question to ask
it: Was it really the same problem you had? I mean with the same dmesg
output? Or was it just freezing at the logo due to some other issue?


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/ValveSoftware/Proton/issues/58#issuecomment-426204309,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AA_Ql-tECUxcN2a-6fMtLnx2BsFLLQJ9ks5ugy4IgaJpZM4WHKFm
.

Kkakra 2018-10-02 github

@Janhouse Don't get me wrong: The tip is worth mentioning and worth trying. I just wanted to point out the exact meaning of "same issue". ;-)

@TheVE To recreate the prefix, move the "pfx" folder in compatdata/GAMEID out of the way, maybe move the complete GAMEID folder out of the way. The game id can be found in the title of this issue.

Beware that it probably includes configuration data... So don't simply remove it.

Kkakra 2018-10-02 github

@TheVE wrote:

I might be out of luck playing POE. :(

Crashes on the gears at game start. Sound continues in the background. But system is unresponsive. Cannot ctl+alt+esc or switch tty.

I can ssh into the machine but cannot get actions to show on the system. Looking at dmesg it is some sort of GPU crash?

`[ 102.096105] [drm] dce_get_required_clocks_state: clocks unsupported disp_clk 896973 pix_clk 592000

[ 1036.359130] [drm:amdgpu_job_timedout [amdgpu]] ERROR ring gfx timeout, last signaled seq=298090, last emitted seq=298092

[ 1036.359133] [drm] GPU recovery disabled.`

Please look here:
https://github.com/doitsujin/dxvk/wiki/Driver-support

TTheVE 2018-10-02 github

@kakra Hmm. I'm on Mesa 18.1.6 but LLVM 6.0.1. Maybe I'll have to wait for LLVM 7.

Also, noob question: To disable DXVK do I just use "PROTON_USE_WINED3D11" in launch options?

Cheers.

//edit. Deleting the prefix did not help.

Kkakra 2018-10-02 github

@TheVE Noob answer: Yes... You're not quite as noob as you thought, hmm? ;-)

TTheVE 2018-10-03 github

@kakra Thanks for all your help. But so far no luck using Proton. I also tried Lutris before without luck and gave it one last shot just now.

Lutris works using:

esync-staging-pba-nopulse-3.17-x86_64 (I just got the newest one and haven't tried any others).
DXVK disabled (system still hangs if enabled) - Tried DXVK 0.80 and it still hangs.

Frame rates are only around 30fps with dips. But I can play! So I'll stick with this for now.

Kkakra 2018-10-03 github

@TheVE Did you edit user_settings.py.sample or did you actually copy that to user_settings.py and edited the copy? Does it still show the GPU hang in dmesg? That would mean DXVK is still enabled...

Also, I'm not including the full staging patchset but only selected patch series. That may make a difference. I wonder which series would be missing in my build then.

JJanhouse 2018-10-03 github

Are you on recent graphics driver version? I'm pretty sure DXVK at some
point required quite new driver version (at least for Nvidia). And if You
are not on rolling release distro like Arch or using some custom bleeding
edge repository for graphics drivers then that could be the problem for
DXVK not working. Or maybe "esync-staging-pba-nopulse-3.17-x86_64" uses the
old PoE patch and that somehow affects it?

On Wed, 3 Oct 2018 at 04:19, Kai Krakow [email protected] wrote:

@TheVE https://github.com/TheVE Did you edit user_settings.py.sample or
did you actually copy that to user_settings.py and edited the copy? Does
it still show the GPU hang in dmesg? That would mean DXVK is still
enabled...

Also, I'm not including the full staging patchset but only selected patch
series. That may make a difference. I wonder which series would be missing
in my build then.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/ValveSoftware/Proton/issues/58#issuecomment-426481932,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AA_Ql_sZ_9W6EJ2VsD6V4BMEzKRayCdBks5uhBCwgaJpZM4WHKFm
.

CCTJansson 2018-10-03 github

Sorry to interrupt, but I'm more interrested in when I can play Path of Exile through Steamplay using DX11 without any tricks? Should I expect a fix soon either from GGG or from Valve? Tried DX9 and have great stuttering which is a common problem I guess, pretty much the only thing I miss going from windows.

JJanhouse 2018-10-03 github

@CTJansson, probably when PoE patch is included in wine-staging (it might be a "hack" and thus never included) and when Valve will upgrade to recent wine-staging and DXVK version.
I could be wrong but it might also require recent graphics driver version at least for Nvidia cards, and if Valve focuses on supporting Ubuntu which has older drivers then it could be a while. This is why Valve allows using custom Proton builds.
Also you never know when GGG will break it again by releasing some fancy updates. :)

As time goes on more and more older games should start working with Proton but new, frequently updated games could be a problem.

Kkakra 2018-10-03 github

TL;DR

@CTJansson I don't think this game is on the priority list for Valve because it provides a (apparently not so) working DX9 layer. It's not that it wouldn't work at all. And then it needs the CoInitialize hack which is not going into official wine, which is also not part of staging, it's a hack (one of many that Valve is currently carrying in the Proton branch) which is one more patch to take care.

Then, I'm sure Valve surely has one or another eye on all these issues. But it's a whole lot of information in a lot of issues that need to be watched. And without the knowledge of the community, Valve may even have a hard time to figure out what to fix and how. It's not like that you put a wish here, and then one month later the game will magically work without anyone commenting on it, or trying solutions, reporting back, working on patches.

There's a temporary solution here you can use to make it work (actually, there are multiple but only few can actually be used as a Proton replacement). It's not a trick, it's just how it works until the issue receives official attention from Valve. And while it has become somewhat noisy here because the game is quite popular, it probably has a workable solution already at hand that Valve "just" needs to pick, test, and apply.

GGG OTOH is probably not very interested in getting the game officially running on Linux. Their user base is primarily Windows, their technology is Windows, that's where the money comes from... They could have made a fix which initializes the engine differently (a vast amount of games works without that, so it's not inherent to some common video or audio engine), so we wouldn't need the CoInitialize patch at least - but they didn't. If they want to do something into that direction, my wish would be to port the engine to Vulkan instead of some fancy new DirectX stuff. It would make the game work almost automagically with Proton then, and probably even with near-native performance.

@Janhouse I'm pretty sure that it is more likely to get the new games running than the old ones. There are the very old ones (DX9) which already work on a very solid WineD3D implementation. And then there's DXVK for DX11 which is in very good shape (the WineD3D implementation lacks behind a lot). And then there will be VkD3D somewhere in the future for DX12 which will probably also work very well then. So there's a gab with the somewhat older DX10/DX11 titles, and there's a problem with DRM-protected titles. Also, I don't see that Valve pays a lot attention to staging, it's not their business to clean up staging. So when a hack needs to be included to get a game running, there's no requirement for having that in staging. Actually, Proton uses exceptionally few patches that come from staging.

Also I don't see where the point is in focusing on older drivers. Everything I see actually focuses on very bleeding edge drivers - be it the NVIDIA vulkan dev drivers or the AMD drivers which require bleeding edge LLVM and Mesa to work correctly. This will take time to settle down but I'm sure that is not too far away. You cannot magically make something work with lacking feature support in the drivers by focusing on old drivers in some distribution - and current Windows titles use a lot of such features. It's the distributions and the driver makers which need to deliver for the next stage.

Given the time when Proton was released based on wine-3.7 I'd imagine that Proton development lacks behind by two or three months. So by the time it was released, we were at - I don't know - wine-3.14? wine-3.12? It's likely they are already working on a new Proton version based on a somewhat recent wine version, probably something around the current version. Looking at the flow of patches in the wine list coming from people involved with Proton, it looks like there's currently a lot of patch integration going on still with patches related to stuff from the Proton 3.7 branch. So it's likely there will be a freeze more sooner than later to the current wine version. I'd guess the next Proton would be based somewhere around 3.14 - 3.18. Wine 3.14/3.15 was one of the more difficult rebases when I rebased my Proton branch (so the version boundary looks not too wrong). And then re-integration of patches and hacks would start, also paying attention to the issues here in the tracker. It will probably then take 2-3 months again to release that version to the Steam distribution channels.

@CTJansson We have to keep in mind that it's not as simple as getting one game running. I'm pretty sure that my own Proton branch won't work with a lot of games, probably including even whitelisted ones. But it works very well for the games I play. But that's just not good enough in Valves position: They want to enhance the list of supported games without sacrificing what is already supported. And it has to pass some compatibility tests and quality tests, too. For the next version, I'm pretty sure we have to wait at least until the graphics stacks improved and activity settles down a bit (which would also mean there's not much left that a "moving target" like PoE could break).

So if you want to play games now that are not in the official whitelist, you have to work with some tricks. :-)

But still, sorry for the noise. I already questioned myself if these elaborated discussions should be carried out somewhere else. Anyone has an idea or opinion in that?

GGregSutcliffe 2018-10-03 github

But still, sorry for the noise. I already questioned myself if these elaborated discussions should be carried out somewhere else. Anyone has an idea or opinion in that?

@kakra we could move to the Path of Exile forums? https://www.pathofexile.com/forum/view-thread/8980 or even start a Proton-specific thread?

Kkakra 2018-10-11 github

Here's a fix for the CoInitialize problem which gets rid of the CoInit hack for Path of Exile:
https://github.com/kakra/wine/commit/f716887123418f1e14fa6c06aad9e854335f6eaa

Anyone knows if this would be good enough to suggest wine upstream?

Eedmondo 2018-10-11 github

@kakra Your patch is interesting and I tested it, it works.

Now I'm trying to understand why it helps to coinitialize in CoInitializeSecurity. Any idea?

In the ole trace now we see similar traces like this one:

(...)
0061:trace:ole:CoInitializeEx ((nil), 0)
0061:trace:ole:CoInitializeEx () - Initializing the COM libraries
0061:trace:ole:RunningObjectTableImpl_Initialize 
0061:trace:ole:apartment_construct creating new apartment, model=0
0061:trace:ole:apartment_construct Created apartment on OXID 600000cafe
0061:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
0061:trace:ole:CoInitializeEx ((nil), 2)
0061:warn:ole:enter_apartment Attempt to change threading model of this apartment from multi-threaded to apartment threaded
0061:fixme:heap:RtlSetHeapInformation 0x110000 0 0x247fe5c 4 stub
0062:trace:ole:DllMain 0x7e160000 0x2 (nil)
0062:trace:ole:CreateConnectionPoint (0x1a2558 {9bfbbc02-eff1-101a-84ed-00aa00341d07} 0x1a2594)
0062:trace:ole:CoInitializeEx ((nil), 2)
0062:trace:ole:apartment_construct creating new apartment, model=2
0062:trace:ole:apartment_construct Created apartment on OXID 6000000062
0062:trace:ole:apartment_get_or_create Created main-threaded apartment with OXID 6000000062
0062:trace:ole:CoCreateInstance (rclsid={cacaf262-9370-4615-a13b-9f5539da4c0a}, pUnkOuter=(nil), dwClsContext=00000001, riid={ec5ec8a9-c395-4314-9c77-54d7a935ff70}, ppv=0x2c2fb44)
0062:trace:ole:CoCreateInstanceEx ({cacaf262-9370-4615-a13b-9f5539da4c0a} (nil) 1 (nil) 1 0x2c2fac0)
0062:trace:ole:CoGetTreatAsClass ({cacaf262-9370-4615-a13b-9f5539da4c0a},0x2c2fa4c)
0062:trace:ole:create_classes_root_hkey L"\\Registry\\Machine\\Software\\Classes" -> 0x80
0062:trace:ole:apartment_addref 6000000062: before = 1
0062:trace:ole:apartment_release 6000000062: after = 1
0062:trace:ole:CoGetClassObject CLSID: {cacaf262-9370-4615-a13b-9f5539da4c0a},IID: {00000001-0000-0000-c000-000000000046}
0062:trace:ole:apartment_addref 6000000062: before = 1
0062:trace:ole:COMPOBJ_DllList_Add L"C:\\windows\\system32\\windowscodecs.dll"
0062:trace:ole:apartment_getclassobject added new loaded dll L"C:\\windows\\system32\\windowscodecs.dll"
(...)
Kkakra 2018-10-12 github

When I looked at fixme+ole it looked like the game only ever calls CoInitializeSecurity but not CoInitialize(NULL). So I reverted the hack and moved the call to CoInitializeSecurity which would otherwise be a no-op in current wine (it is a stub only, does nothing):

0061:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!

Now, the game calls CoInitializeSecurity early enough which in turn then calls CoInitialize(NULL) and everything is fine. I have a slightly updated fix in the queue already. But that doesn't functionally change anything, it only touches logging.

I'm not sure how "correct" this patch is, clearly CoInitializeSecurity() should have some more side effects than just calling CoInitialize(). But since it's "only" about security and Wine mostly acts as a single-user OS layer (it's not running as root, it's jailed into the current user only), I think it's simple enough to do it that way. At least I've added the most simple checks according to MS docs: Some parameters must be set in specific ways.

Without the hack I now see DOOM complaining about the apartment not being initialized. But this is probably just a similar fix. Other than that, that game works.

Kkakra 2018-10-12 github

But looking at your trace and at wine source (and how it used the functions), it looks like we should not call CoInitialize() from CoInitializeSecurity()... The caller should always invoke both functions one after the other... Is it something about threads maybe?

Jjarcode-foss 2018-10-13 github

@kakra Just a heads up, your makefile provided with your recent tagged releases try to run clean rules on makefiles that don't exist on a fresh build.

Kkakra 2018-10-13 github

@wacossusca34 Yes, I know. It should be fixed with the next push... It should work if you run "make configure" first. Let me know if it doesn't...

SSurfingNerd 2018-10-27 github

my experience:
it works with dx9 and dx9ex - but it uses the 32 bit mode and it crashes once the game hits 4 GB of RAM what is usually after 1 hour of player. there is a 64 bit version available yet, but i could not get it starting using this version.

Kkakra 2018-10-27 github

@SurfingNerd It works with my Proton build linked above. I'll update this soon to be rebased onto official Proton 3.16 (actually, it's done including updates to wine-3.19, I'm still testing and want to work on some additional optimizations). The original Proton still lacks the CoInit hack and some windowscodecs patches to actually init DX11 successfully, You also need DXVK to run it because the game uses DX11 deferred contexts (my build includes those, so you could run without DXVK but it's slower at least for me).

Kkakra 2018-10-27 github

@edmondo Meanwhile, I reverted my updates to CoInitializedSecurity() because it seems wrong. I'm using the original refined hack again instead.

Eedmondo 2018-10-27 github

@kakra Same here. The refined hack seems to be the "best" workaround at the moment: If apartment is not initialized, initialize it.

I've gone through the microsoft documentation and I share the same feeling that CoInitialize inside CoInitializedSecurity() seems the wrong thing to do.

What I'm quite surprised and don't understand, is why do the coinit inside the Security call "fixes" the problem later? It's somehow unexpected for me (and I'm not sure if I understand my traces correctly).

Kkakra 2018-10-27 github

My best guess is that in the wine code, a CoInit call is missing somewhere in the other sub-systems because it is ref-counted. Shortly before the game expects an initialized apartment, it is uninitialized and ref-counted to 0. It looks like this is related to DX code somehow. I'd guess that it should be ref-counted to at least 1 at this stage, so it's missing an init somewhere before.

Kkakra 2018-10-27 github

@SurfingNerd Also, the DX9 code (not sure if in wine or the game) seems to leak memory because the 64 bit version stays below 2.7G of RAM usage for me.

Tteh-monad 2018-11-01 github

Does someone tried this solution? I think it helpful
https://bugs.winehq.org/show_bug.cgi?id=42695#c15

JJanhouse 2018-11-01 github

@teh-monad, PoE already works fine with wine-staging and DXVK as long as you include the coinitalize patch. Other patches seem optional.
Have played it for sessions up to ~12 hours without any problems.
It does crash on resolution change (window resize/switching to/from fullscreen) but if you don't touch it then it works great.
Additionally I included the DXVK placeholder shader patch to not lag the game while new shaders are computed.
Overall I get similar performance as on Windows.
PoE Trade tool also works but You have to open and close it's settings window every time You start it.

CCTJansson 2018-11-01 github

@Janhouse Still quite new to Linux, but how do I get this patch to work with lutris? Only played native games thus far so I'm trying to learn Lutris.
Wine version is WineHQ devel (3.19) and DXVK 0.90, so I basically just need the patch.

JJanhouse 2018-11-01 github

@CTJansson, I read somewhere that in Lutris that the included wine-staging with esync patches that can be obtained within Lutris includes all the necessary patches for PoE. (Under Lutris > Manage runners > Wine versions)
img1

Then just select DXVK 0.90 if Your drivers support it and You should be OK.
img

I also have some additional variables set up but those are probably not needed.
img2

I installed PoE in Lutris using their provided install recipe.

I now run the game without Steam or Lutris but it certainly was a lot easier through Lutris initially. I hope these fixes will be added to Proton eventually, would be great if one of the top games from Steam would run on Linux without any tinkering. :smiley:

CCTJansson 2018-11-01 github

@Janhouse Thanks for the help on Lutris, but this doesn't seem to fix the DX11 crash on startup?
EDIT: Seems I was missing the vulkan mesa drivers, works now!

JJanhouse 2018-11-01 github

@CTJansson try setting up a new prefix. If it crashes on startup after logo video then there is a chance it is a broken prefix. I had to do it after wine upgrade at some point.

AAzusk09 2018-11-08 github

i've gotten poe working in proton (3.16) but can't get directx 11 to work cause of the wic factory error.
am i able to appy the wic patch even though i installed steam through the manjaro repository, and if so how do i apply it? i don't like crashing every 2 maps :/ thanks in advance..

Tteh-monad 2018-11-09 github

@Janhouse I would prefer if it run by native wine.

GGloriousEggroll 2018-11-30 github

once proton's wine is patched with the dx11 patch, it still errors out because wine isn't compiled with libpng. Source: I compiled proton with the patch in a debian vm via docker per the readme. Other various game patches I tried for different games working as intended.
missing-lib-png

Tteh-monad 2018-11-30 github

@GloriousEggroll same error on debian. wine use libjpeg62, but debian have only libjpeg62-turbo

Kkakra 2018-12-07 github

@GloriousEggroll Wine 4.0 RC1 needs a lot fewer windowscodecs patches now. I only applied those and skipped the dependencies from the definition files:

e74377fe898 - windowscodecs: Fix 32bppRGB to 32bppRGBA conversion. (2 hours ago)
03c433b87ab - windowscodecs: Add support for 32bppRGB, 32bppRGBA and 32bppPRGBA to format converter. (2 hours ago)
2de3f6ecde9 - windowscodecs: Add support for converting to 8bppIndexed format to IWICFormatConverter. (2 hours ago)
c0c2f98c062 - gdiplus/tests: Add some tests for GdipInitializePalette. (2 hours ago)
01c3008d70a - gdiplus: Implement GdipInitializePalette. (2 hours ago)
GGloriousEggroll 2018-12-08 github

@kakra I'm trying to dig those patches up from staging so that I can inform the staging guys and see about getting them merged into mainline, I'm having trouble locating this one:

2de3f6ecde9 - windowscodecs: Add support for converting to 8bppIndexed format to IWICFormatConverter. (2 hours ago)

do you happen to know what patchset it was from?

-edit-
nevermind I found it under the gif encoder wincodecs sub patchset.

Kkakra 2018-12-08 github

@GloriousEggroll I'll push my wine-4.0-rc1 proton branch soon (after a bit of cleanup). If you like to, I'd invite you to look at and test some of the patches. There's also a bunch of selected staging patches in there which could maybe be upstreamed.

Edit: Some of those patches I listed are already queued at https://source.winehq.org/patches/

GGloriousEggroll 2018-12-09 github

@kakra thanks I've been able to make a custom proton build with slightly modified versions of the patches (basically just modified to patch cleanly into proton). I also informed the other wine staging guys about trying to get windowscodecs-32bppPRGBA upstreamed as those are the only two patches missing that arent queued up already. Worked like a charm along with DataBeaver's CoInit patch

Ppresianbg 2018-12-10 github

Hi guys,

I haven't checked all the post in this "mega" issue. Sorry about that...
My simple question - will be it possible to play PoE on Linux with Steam's Proton without patching/hacking and so on ?

Thanks!

CCTJansson 2018-12-10 github

@presianbg Yes, I'm using lutris, with tkg-3.21, dxvk-0.93, state-cache active, it's stuttering at first but the more dxvk can cache it will become more and more enjoyable, I have a vega 56 gpu with a ryzen 1700, and the fps is everything between 30 and 90, with some minimal stuttering, but I would say I average 50fps.
If I would use a rank I would rank this game gold in terms of lutris/protondb ranking.

EDIT: sorry didn't read you wanted to play on proton, you can run lutris, install PoE through wine with steam, then use tkg-3.21 and dxvk-0.93

Mmeowmeowfuzzyface 2018-12-10 github

@CTJansson Are you using this script? I am running this with a Fury X on DXVK 0.93, and so far I've gotten through Act 4 without a single crash except for when trying to resize the window. It's keeping a solid 60 FPS without skipping a beat. If it wasn't for the window resizing crash and the occasional audio crackle, I would say this Lutris script is Platinum.

Unfortunately, Proton is unable to launch the DX11 version, and the DX9 version crashes frequently. I have managed to reduce the number of crashes with the following launch options set through Steam: --waitforpreload --nologo --nodx9ex --gc2 --noasync.
However, it still crashes with the texture error messages after a few map transitions.

Ggarpu 2018-12-11 github

FYI, the texture error messages after map transitions are happening to people on Windows, as well. There's about 3-4 posts in the PoE forums about it. I don't think that's specific to WINE or DX9, since there were people using dx11 with it, as well.

Mmeowmeowfuzzyface 2018-12-11 github

Kind of weird, then, that the automated workarounds in the standalone DX11 Lutris script seem to fix it. 25 hours in now and not a single crash on my system (except when resizing the window).

CCTJansson 2018-12-11 github

@meowmeowfuzzyface no I don't, I manually setup my Lutris PoE config with tkg-3.21, enabled dxvk and so on, not sure if I use e-synct tho. That script you linked uses tkg-3.19, both contains the CoInt patch for PoE so that doesn't really matter, also my config has dxvk state cache activated.
Gold/Platinum for sure, with state cache active it will be stutter at first but less the more it caches.

As long as the CoInt patch is not inside Wine we wont be able to run PoE on proton without tweaking your own proton branch I guess. You can still run the steam version through wine and apply tkg-3.21 and dxvk, this way you don't use proton but people will see you play PoE in friendslist and steam will log your hours played.

Nn1ete 2018-12-11 github

so as i read trough this issue, there is actually no working stable config for proton atm?
if i am wrong, i am thankfull if someone can post the steps to archive it.
edit: any chance something changed with 3.16.5 ? :dancer:

Dduckartes 2018-12-18 github

I initially installed Steam to play Linux compatible games.

Here's my setup that works:

Ubuntu 19.04

  1. Install steam: sudo apt install steam -y
  2. Enable Steam Play
  3. Install Path of Exile through Linux Steam
  4. Follow this guide for installing requirements https://github.com/tainium/PoE-Lutris-DXVK (skip the standalone install, Path of Exile is already installed :) )
  5. Install "Wine" runner "tkg-3.2.1-x86_64" (or whatever the latest may be, this works as of this post)
  6. Install "Wine Steam" runner with previously chosen wine version
  7. In the Lutris menu bar select Game -> Add
  8. Use the settings in the screenshots

screenshot from 2018-12-18 03-17-32

screenshot from 2018-12-18 03-17-39

screenshot from 2018-12-18 03-17-52
(select whatever DXVK you installed)

You may have to launch it a few times to get all the Steam client updates (mine crashed a few times, but finally updated.) I run Lutris from the terminal so I can see the output and catch any errors.

Once steam is launched through Lutris, you can set you Steam directory and launch the game.

Might be a more simple solution, but this worked for me.

Note: My Path of Exile was already fully updated through Linux Steam client.

Eevilch3n 2018-12-20 github

so does this mean in dxvk 93+ we don't need the old dxvk patch anymore?

and does anyone understand the resize/resolution problem? i really wish i could play with more than 1920x1080

Kkakra 2018-12-20 github

With the state cache in DXVK you usually don't need the shader hack anymore in DXVK... It works fine here, the stutters will go away after some minutes of playing, it even works in 4k resolution for me. To change the resolution, you need to trick the game into starting with a bigger window right from the start. Full screen modes may not work properly. You can edit the config file to switch to a higher resolution and windowed mode.

Eevilch3n 2018-12-20 github

ahh good to know :)

when ever i edit my production_Config.ini to something else than 1920x1080 my game does not load after the ggg-logo - very strange.. does it need a certain 16:9 ratio for fullscreening?

windowed mode works fine as you said.

Kkakra 2018-12-21 github

Well, I used KDE KWin rules to force the window into remembering the last size and position, I've then maximized the window on my 4k monitor and quit the game (which took about 2 minutes because the graphics stack gets stuck somehow when doing that). After restart: Tada, full resolution.

The game runs at around 40 fps (at least with my proton build). Despite "dynamic resolution", I've only seen it downscale only very rare (maybe 3 times over a period of 1 year of playing).

Here's my display config:

[DISPLAY]
adapter_name=GeForce GTX 1050 Ti(#0)
borderless_windowed_fullscreen=false
directx_version=auto
dx11_antialias_mode=1
dx9_antialias_mode=1
dynamic_resolution_fps=30
fullscreen=false
global_illumination_detail=0
light_quality=1
max_PS_shader_model=ps_4_0
max_VS_shader_model=vs_4_0
maximize_window=true
post_processing=true
resolution_height=2077
resolution_width=3840
screen_shake=true
screenspace_effects=2
screenspace_effects_resolution=1
shadow_type=hardware_7_samples
texture_filtering=4
texture_quality=0
use_dynamic_resolution=true
vsync=false
water_detail=1

My proton build could fix a few problems with handling window placement upon start of some games. So you may want to give it a try if you still see problems. You can download a binary version of it, just unpack into your existing proton folder (do not remove the folder first, my binary build does not contain all of the proton tooling yet).

My proton build: https://github.com/kakra/wine-proton

Eevilch3n 2018-12-22 github

the stutters will go away after some minutes of playing

so ive tried my lutris setup with the 0.94 version now and without the async-hack with the following options:

  • tkg 3.21 + Esync + dxvk 0.94
  • DXVK_STATE_CACHE=1
  • DXVK_HUD=fps,version,memory

i played 30 minutes but i feel like the game keep slowing down / freeze very often is my cache not ready?

does the dxvk cache persist through restart of my system?
maybe i have to switch back to the 0.91 dxvk + async hack

Kkakra 2018-12-22 github

The cache persists between reboots but you may need to remove it if you applied hacks before. I had problems in other games with incorrect or slow rendering, even crashes, until I cleared the cache so it could rebuild. If you are playing with nvidia, you may also need to clear the nvidia shader cache.

I think the cache should be in a subdirectory of the game exe... (unless you play with proton, Steam will place the cache in a shared shader cache directory)

SSurfingNerd 2018-12-28 github

since months there exists now a custom fix for the problem, will it ever make it into proton ?? or impossible for some reason ??

Kkakra 2018-12-28 github

@SurfingNerd You can play in DX9 mode, it doesn't show the problems that DX11 mode shows. Also, the fix you probably mean is not a fix but a hack, that hack is technically incorrect and may show very wrong behavior with other games. I think this was already discussed here. And I don't think Valve wants Proton to become another version of Lutris, i.e. with custom builds and install scripts for every second game. At least not at this stage.

Also, I'm not sure if you noticed what happens in the backgrounds... A lot of needed patches for this game have already been upstreamed to wine and will appear in 4.0. A "Proton 4.0" (if it comes but I'm pretty sure) will already have a lot of the patches needed to run this game, or in other words: Fewer patches/fixes are needed then. This game needed a lot of individual fixes aka commits, maybe around 50 back then. That's down to around 3 now. And I think the "CoInit" hack is one of the last remaining hard parts. If you want to accelerate this, please help in making the hack a proper fix. Thanks. :-)

SSurfingNerd 2018-12-28 github

@kakra thx for your answer :) yeah i was playing already delve leage until in DX 9.0, but it has a memory leak. i dont know if this leak is a bug in one of the Proton libraries, or in Path of Exile. it seems connected to models or textures. it crashed pretty soon in the delve or in maps with a lot if variations. (like Beyond + abyssal), or just in the town because a lot of players are passing by. so every loading screen counts. Proton 4.0 sounds very promissing, i guess i will wait for it :)

Kkakra 2018-12-29 github

@SurfingNerd The problem is DX9 mode being 32-bit. Memory management is different in wine because it needs to map the Linux stuff into the address space, too. If you're using pulseaudio, you may have more luck by reducing the shared memory footprint of it, I outlined it here:
https://github.com/kakra/wine-proton/blob/rebase/proton_3.16/README.md#hints-to-32-bit-users

But don't expect Proton 4.0 to include the CoInit hack needed for DX11... I think this game has low priority as it has a somewhat working DX9 mode.

This memory problem also exists in other 32-bit titles, like the original Skyrim which freezes due to this very often, especially if you added mods.

I'm currently working on shaping my Proton variant into a stand-alone tool which you could then choose to run PoE with instead of the official version. Until then you could just extract my version of Proton over your Proton folder. PoE runs just fine with it (and other title listed in the README I linked). You can find a pre-compiled version of it so you don't need to take the hassle of setting up a build environment.

If you go to "Library -> Tools" and add "Proton" to your Steam library, you should also be able to easily revert to the official version by verifying files. Or just extract the dist.tar.gz again that comes with Proton.

Eevilch3n 2018-12-29 github

iam curious regarding the shm of pulseaudio, does shrinking the memory have any other sideeffects? i notice when play PoE after 1-2 hours my sounds goes crackling until i toggle the device inside the game client

Kkakra 2018-12-29 github

@evilch3n I experienced no side-effects so far - as long as you don't make it too small. The default is 64 MB which is huge in 32-bit space with many sound streams opened.

Nnonchip 2019-01-09 github

@duckartes your solution doesn't have anything to do with proton though, you install steam and enable it but then you never touch it again and use winesteam 0.o

Nnonchip 2019-01-09 github

You can play in DX9 mode, it doesn't show the problems that DX11 mode shows.

@kakra "Out of memory crash" "Failed to create thread crash" on every single map change says i can't :/

and the dx11 version doesn't even get past the "cant create WIC factory"+segfault

Kkakra 2019-01-09 github

@nonchip It works with my proton version: https://github.com/kakra/wine-proton/blob/rebase/proton_3.16/README.md

Download the tar.xz from the release page and unpack it within your existing Proton 3.16 Beta folder. PoE will work then in DX11 mode.

Nnonchip 2019-01-09 github

@kakra thanks, trying that now. btw you know the compatibilitytools.d trick? gets rid of the need to murder the official install (and get murdered by its updates), for example https://github.com/redmcg/wine/ does this for their unofficial elite dangerous patch

EDIT: tried your version, "failed to create WIC factory". am I doing anything wrong here? running it with PROTON_FORCE_LARGE_ADDRESS_AWARE=1 PROTON_NO_D3D11=0 PROTON_NO_ESYNC=0 %command% --nologo

EDIT: omg fail i forgot to restart steam after switching the proton version, nevermind, works fine now, thanks much :3

Hhumunuk 2019-01-09 github

EDIT: tried your version, "failed to create WIC factory". am I doing anything wrong here? running it with PROTON_FORCE_LARGE_ADDRESS_AWARE=1 PROTON_NO_D3D11=0 PROTON_NO_ESYNC=0 %command% --nologo

@nonchip where do you put these?

Kkakra 2019-01-09 github

@nonchip Yes, I'm working on that "trick". Meanwhile you can craft such a directory yourself until everything can build from scratch in my repo. See https://github.com/kakra/wine-proton/projects/3

Nnonchip 2019-01-10 github

@humunuk right click on the game, properties, general, set launch options.

it's documented as just appending parameters but if you include the string %command% in it it actually allows you to specify the whole command line (and that string is replaced by the game executable).

@kakra I actually did that by copying your patched wine over the "helper files" directory provided by the elite dangerous patch project. obviously doesn't work for that game anymore now but hey maybe valve will wake up at some point and realize specifying the proton version per game might be a smart idea... if not i'll look into whether i could just tweak the proton launcher script to switch different $WINEs depending on the game id.

EDIT: "look into" means "a few hours after waking up the next morning i'm done" apparently: https://gitlab.com/nonchip/hydron

Kkakra 2019-01-10 github

@nonchip I think Steam already uses a specific Proton version per game... That is unless you enable the global override switch to use always the tool you specify. So the infrastructure is already there but the user doesn't have control over that except "the default or the override".

Kkakra 2019-01-10 github

@nonchip from https://gitlab.com/nonchip/hydron:

NOTE: to use a "vanilla" version you have to put it into your compatibilitytools.d manually since steam has a habit of uninstalling Proton versions it thinks could be "unused"...
see the docs, but tl;dr: make install is your friend.
Alternatively you might (I didn't test that) be able to copy a previously installed vanilla version from steamapps/common.

You can actually go to your Steam lib, choose "Tools" from the library dropdown, search for Proton and force-install each version.

Nnonchip 2019-01-10 github

@kakra

So the infrastructure is already there but the user doesn't have control over that except "the default or the override".

well to me that doesn't really make a difference sadly since i want to run custom versions (as evidenced by e.g. this very issue :stuck_out_tongue: ) but interesting they do it "behind the scenes"... i guess just another instance of "oh the average user wouldn't know what to do with it so why give the people who want it the option" aka "stupid user mode" that's sadly so easy to start thinking in when you get that amount of actually VERY stupid questions a project as big as steam has to deal with each day...

You can actually go to your Steam lib, choose "Tools" from the library dropdown, search for Proton and force-install each version.

oh very good to know, i'll add that to the readme, thanks :smile_cat:

i guess it might suffer from the dist.tgz problem though? I did have a version lying around that i never used and it actually wasn't able to unpack itself and instead expected steam to do that upon first using it.

Kkakra 2019-01-10 github

@nonchip Look into the proton python script, it should be supposed to unpack the dist upon first use. It may fail some pre-condition, tho. I already looked into the inner workings while planning to create my own tool. But it will take some more time because it's just a spare time project - and unless something doesn't bother me too much I don't feel the urge to fix things. ;-)

The unpack magic is build around comparing the version file... Maybe that was still around for you?

Nnonchip 2019-01-10 github

@kakra oh i see, that might have happened, yes. i'll add support for steamapps/common/Proton* then

...done. i'll added a note linking to this thread and the fallback support to that folder, but with a "might not work if steam messes with it" warning :stuck_out_tongue:

Kkakra 2019-01-10 github

@nonchip Unpacking starts here:
https://github.com/ValveSoftware/Proton/blob/4a5f7064b3a7f20cc7206db946d5f8a47b8ca7e7/proton#L145

So as long as you start through this wrapper, it should unpack the dist. That is unless dist/version already exists (and some other pre-conditions). It will go to the upgrade path otherwise.

Nnonchip 2019-01-10 github

@kakra i do that, yup. only reason i don't trust the path as much is valve specifically says steam won't touch the comptools folder, which implies it might do stuff to common in the future, in which case i want people to know.

that said steam also used to do stuff (rm -rf to be precise) to ~ for a while, so ... yeah :P

Kkakra 2019-01-10 github

@nonchip This doesn't happen if you do backups - because Murphy. ;-)

You could explicitly check for Proton */dist/version to see if that version is bootstrapped already.

Tteh-monad 2019-01-16 github

So wine have support for DX11/10. But POE do not work with this and need personal patch like the wine team doing for another applications?

Also, most of games from big companies work perfectly with dx11 without any tricks.

Iinfoman 2019-01-18 github

EDIT: "look into" means "a few hours after waking up the next morning i'm done" apparently: https://gitlab.com/nonchip/hydron

Steam beta just updated with a new feature allowing per-application Proton version override.

Ggarpu 2019-01-29 github

https://www.pathofexile.com/forum/view-thread/2319193 PoE is ending support for the dx9 client in March. It would be nice if Steam rolled the CoCreateInstance() fix into proton, proper.

Eedmondo 2019-01-29 github

@kakra Thinking about the WIC issue, I find this new patch in wine interesting:
https://github.com/wine-mirror/wine/commit/77c3761ad4e557f9fa311299e77746bf225a575a

EDIT: I also see progress in the wine bug report. Did the game client fixed the WIC issue?
https://bugs.winehq.org/show_bug.cgi?id=42695

Nnsivov 2019-01-29 github

@kakra Thinking about the WIC issue, I find this new patch in wine interesting:
wine-mirror/wine@77c3761

No, it's unrelated.

EDIT: I also see progress in the wine bug report. Did the game client fixed the WIC issue?
https://bugs.winehq.org/show_bug.cgi?id=42695

Yes, it was patched in game client. Now we only need to fix an issue in WIC itself.

Kkakra 2019-01-29 github

@nsivov @edmondo

@kakra Thinking about the WIC issue, I find this new patch in wine interesting:
wine-mirror/wine@77c3761

No, it's unrelated.

I was also aware of the patch and wanted to try it. Thanks for pointing out it is unrelated. Saves me some time. ;-)

EDIT: I also see progress in the wine bug report. Did the game client fixed the WIC issue?
https://bugs.winehq.org/show_bug.cgi?id=42695

Yes, it was patched in game client.

Does this mean we longer need the CoInit hack?

Now we only need to fix an issue in WIC itself.

Is that the windowscodecs patches from staging?

Or vice-versa?

Kkakra 2019-01-29 github

@nsivov I guess it's this patch:
https://source.winehq.org/patches/data/157299 which obsoletes the CoInit hack?

Nnsivov 2019-01-30 github

@kakra it is.

Kkakra 2019-01-30 github

@nsivov Thanks, then I'll drop the CoInit hack from my branch and try this one instead. It didn't apply cleanly to my code (there's conflicting lines with the windows activation/minimize patches from @zfigura). I'll report back, and will be pushing my proton branch with the next wine update to 4.1.

Kkakra 2019-01-31 github

I can confirm that the CoInit hack can now be dropped with latest Wine. So we are left with the following windowscodecs patches which seem to be still needed (at least with DX11):

windowscodecs: Fix 32bppRGB to 32bppRGBA conversion.
windowscodecs: Add support for 32bppRGB, 32bppRGBA and 32bppPRGBA to format converter.
windowscodecs: Add support for converting to 8bppIndexed format to IWICFormatConverter.

I'm not sure if all these are needed.

Eedmondo 2019-02-16 github

PoE seems to be OK with Proton 3.16-7 beta. Here a screenshot:
238960_screenshots_20190216172301_1

Nnsivov 2019-02-16 github

Right, the fix is at Valvesoftware/wine@72f375e. For d3d11 mode, I'm only aware of two issues - one for COM initialization, that was fixed by game devs, and another one for WIC missing features, that's the commit I just mentioned.

Eensonic 2019-02-17 github

For me it does not start (shows the grinding gear games animation) and then hangs. The mouse is moving super slowly if at all. Once I got the menu screen afterward, but it looked like it was only half drawn. I checked my CPU load and none of the 6 core was loaded more that 30%.
You mention d3d11 mode - what is the other mode and how can I toggle them? Or is that dx9 and dx11 is the one that I should be using anyway?

Nnsivov 2019-02-17 github

Another mode is d3d9, I don't know how to enable that manually, could be some configuration file. When it used to crash starting in d3d11 by default, next launch it was asking to switch to d3d9.

Kkakra 2019-02-17 github

You can change it in the config file using a text editor. The gist is: The 64-bit binary is d3d11 mode, the 32-bit binary is d3d9 mode (and as such suffering from early memory exhaustion which explains a lot of the stability problems reported with d3d9 mode).

Alternatively, you may just launch the 64-bit mode directly by replacing %command% in the Steam launch options with the full path to the 64-bit exe file. I didn't test that, tho.

Eensonic 2019-02-17 github

Actually it works \o/. I had to lower the desktop resolution. It was 2560x1440 and in full hd it works. Thanks!

Eevilch3n 2019-02-17 github

the dxvk/wine(lutris) version also suffers from a resolution bug (See: https://github.com/doitsujin/dxvk/issues/813)

i dont know how to help/fix/anything with this resolution bug but i wish it would be gone

SSethox 2019-02-17 github

I just tried Path of Exile with Steam Play (Proton 3.16-7 beta) and I managed to play this game with little to no problems, the only minor problem was that the servers could not show ping in the server list.

I just did what this guy did (the comment section mention how he made it work with an Nvidia card. I have an AMD card and I managed to make it work with the same steps which are:

  1. Under Library (hover over to gain the menu)
  2. Go to Tools
  3. Search and find the Proton version to your liking (those available) and install it.
  4. (Optional) Set Launch Options for the application - "PROTON_NO_ESYNC".

And the application shows me using DX11.
I don't know what's the point of having a setting with a list of versions if Proton is not properly installed. But this made the game work, makes me what Wine version steam was using before I did this.

Mmatty-r 2019-02-18 github

Launched using Proton 3.16-7 Beta, I didn't receive any errors on launch. However after the intro video, it appears to lock up at the loading screen with the two gears.

In the logs, I was getting "17388.661:0028:0077:err:winediag:IcmpCreateFile Failed to use ICMP (network ping), this requires special permissions." amongst other things.

Eevilch3n 2019-02-18 github

Launched using Proton 3.16-7 Beta, I didn't receive any errors on launch. However after the intro video, it appears to lock up at the loading screen with the two gears.

Could also be the resolution bug you should check that out too

SSethox 2019-02-18 github

Launched using Proton 3.16-7 Beta, I didn't receive any errors on launch. However, after the intro video, it appears to lock up at the loading screen with the two gears.

In the logs, I was getting "17388.661:0028:0077:err:winediag:IcmpCreateFile Failed to use ICMP (network ping), this requires special permissions." amongst other things.

I had the same problem, so I removed the wine/proton version from steam (WINEPREFIX) and let steam recreate it again (the WINEPREFIX).
Got it to get past the loading screen.

Kkakra 2019-02-18 github

@matty-r The ICMP message just says that gateway pinging in the lobby doesn't work: The game won't display ping times to the gateways and wouldn't auto-select one. This needs either the wine binary installed with CAP_NET_RAW (which won't work here because Proton is user-installed, not system-installed), or it needs a patch from staging. You could also try allow the system creating icmp-echo-request packages from user sockets by setting:

sysctl net.ipv4.ping_group_range="0 65534"
Mmeowmeowfuzzyface 2019-03-06 github

This game works flawlessly for me on 3.16-7 + mesa 18.2.2 now, without any launch options or tweaks. I have multithreading and dynamic resolution turned off in the in-game options because I read some people had crashing with those. Everything is on high settings and it's running great. Played 10+ hours so far without a single crash.

It is worth mentioning that the game initially failed to launch with 3.16-7 selected, but it started working after I manually installed 3.16 Beta in my Steam library under the Tools section. I'm not sure what was the problem before manually installing, since the Proton 3.16 Beta folder already existed under steamapps/common. Maybe it had trouble updating?

Anyway, people might want to give that a try. Even if you have 3.16-7 selected for all titles, try installing 3.16 Beta manually under Tools and then run the game again.

Eevilch3n 2019-03-06 github

It is worth mentioning that the game initially failed to launch with 3.16-7 selected, but it started working after I manually installed 3.16 Beta in my Steam library under the Tools section. I'm not sure what was the problem before manually installing, since the Proton 3.16 Beta folder already existed under steamapps/common. Maybe it had trouble updating?

After this step the game starts up but can't get past the grinding gears, music plays but the game hangs and the system slows down.

Maybe its the resolution thingy ive noticed with lutris/dxvk

  • Ubuntu 18.04
  • Nvidia 415
  • Default Monitor resolution 3440x1440
  • intel i7 4th gen
Ttcfunk 2019-03-06 github

@evilch3n I was getting stuck at the exact same spot. Not sure if you've tried this, but changing my screen resolution to 1920x1080 before launching the game fixed that for me. Not ideal, but at least it is running.

Eevilch3n 2019-03-06 github

@tcfunk damn iam so stoked for the next league and had high hopes the proton/steamplay option might allow linux ultrawide support for poe :/

Ttcfunk 2019-03-06 github

Seems like adding -w 1920 to the launch options worked also. A little more convenient than switching resolution manually before launch.

Eevilch3n 2019-03-06 github

Seems like adding -w 1920 to the launch options worked also. A little more convenient than switching resolution manually before launch.

there must be more, the option does not help me - problem persists. (also tried -w and -h together)
i just might stay with lutris and the hacked dxvk/PKG builds then

Cc0r73x 2019-03-07 github

Just a thought, but maybe try and run it in with wine desktop? Not sure if you can do it in proton but I usually fixes problems like that in wine.

Eevilch3n 2019-03-12 github

Just a thought, but maybe try and run it in with wine desktop? Not sure if you can do it in proton but I usually fixes problems like that in wine.

that didn't change something, but thanks for the idea - now i can play PoE in a windowed mode without having to edit the production_Config.ini everytime i want to change from full to windowed etc.

Jjeromegn 2019-03-13 github

I used to have the same hanging issue as some after the GGG intro movie, but that turned out to be because I was an external monitor. Could also have been the resolution. Works fine directly on my laptop. Not sure if it's relevant, but my external monitor is through thunderbolt.

Anyway, the game runs fine if I use my Intel GPU, but not if I run it with my NVIDIA GPU (GeForce GTX 1070 Mobile Max-Q). I'm using bumblebee with primus_vk (so vulkan works) and here's the logs I get: https://gist.github.com/jeromegn/ddd2b0c7eb5cd47be4310f63b96ec3c9

Running like this: ENABLE_PRIMUS_LAYER=1 PROTON_LOG=1 optirun %command% (that first env var is to enable vulkan)

Essentially, I'm getting a unhandled page fault read access error. Any ideas? I tried with both 3.16 -7 and -8.

What I see happening is the screen goes black and shows the PoE cursor for a few seconds, then exits.

Eevilch3n 2019-03-14 github

Seems like adding -w 1920 to the launch options worked also. A little more convenient than switching resolution manually before launch.

since that didnt work for me i just created a production_Config.ini with height/width etc.
Its working now but the FPS/Stutters are really bad. Seems like every animation/mobcreation/etc. mini-freeze my PC.

Baffling for me is the fact that the most graphic options dont have any positive or negative impact on the performance 8x/4x/no MSAA or medium/high-textures etc.

Last League i played on a lutris/wine/dxvk-pipeline hack combination and almost had 100 fps constantly, but this league i cant get it done not with lutris nor with proton. Iam open for ideas.

Ggarpu 2019-03-14 github

I've been using wine-staging with dxvk, and I've had pretty smooth performance. Are you using the 64-bit client? The 32-bit client runs really poorly for me.

Eevilch3n 2019-03-14 github
  PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND                                                                                                    
 6780 evilchen  20   0 3771876 1,541g 268696 R 207,9  9,9   2:30.56 PathOfExile_x64    

Yes looks like its the 64-bit client.

edit: standing in oriath gives me 20 fps, hideout be like 80, gameplay is 0-20. Ive tried to track if my CPU or GPU or SSD hits any limits but theres plenty of room for every component.

edit2: for what i can see is. the gpu memory allocated is much much lower than the last patch. before it was arround 3,5GB now its it 1.8GB after idling in a fully crowded town.

Jjeromegn 2019-03-14 github

Setting borderless_windowed_fullscreen=false fixed my issue btw. I can now play PoE with my nvidia GPU w/ bumblebee and vulkan.

Edit: Nevermind, only works with DX9 and Proton 3.7.8, I set that in there.

Vvans163 2019-03-15 github

For me the freeze of the GGG loading screen seems to coincide with the printing of "2019/03/15 16:07:41 1543730 [I PathOfExile_x64Steam.exe 41] Sending steam user info request: ...." to the console.

Yea not working for me on latest proton play.

Jjeromegn 2019-03-17 github
KKorinFlakes 2019-03-28 github

Running virtually flawless for me but for some reason when I launch the game it will crash steam, then when I restart steam and re-launch the game it works fine...not really sure what's going on there (happens like clockwork).
Besides the shader stutter I'm getting a solid 70 - 80 FPS, everything on max (except Shadow + GI is on high). On windows I get 140 FPS constant. I didn't need to change any settings in Proton, just install and play.

I know with emulators you can download shader caches to avoid stuttering along through games while you build the shader cache. Would it be possible for Valve to distribute such caches for these games?

  • Sys-info
  • Proton Version: 4.2-1
  • Kernel: 4.15.0-46-generic
  • Driver/LLVM version: NVIDIA 418.56
Rrinaldus 2019-03-29 github

I have a problem. After the game starts and load my character, it gives error window (screenshot) when I try to move. It's impossible to play.

Proton: 4.2-1
Kernel: 5.0.4-arch1-1-ARCH
Distro: Archlinux x86_64
Video: NVidia GTX 660, drivers 418.56

Tteh-monad 2019-03-29 github

I have a problem. After the game starts and load my character, it gives error window (screenshot) when I try to move. It's impossible to play.

Proton: 4.2-1
Kernel: 5.0.4-arch1-1-ARCH
Distro: Archlinux x86_64
Video: NVidia GTX 660, drivers 418.56

PackCheck should fix this.

Rrobyncuppen 2019-03-31 github

For me Path of Exile worked seemingly flawless on 3.16-8 beta but when I try it with 4.2-1 it crashes after a minute or two of playing, without any error message or popup. It just crashes straight to desktop.

Proton: 4.2-1
Kernel: 5.0.4-arch1-1-ARCH
Distro: Antergos Linux x86_64
WM: i3-gaps
CPU: Intel i5-4590 3.7Ghz
GPU: Nvidia GTX 770 (418.56)

*edit
Now it happens with 3.16-8 as well

Kkisak-valve maintainer 2019-03-31 github

Hello @JasonLighthunter, please add PROTON_LOG=1 %command% to the game's launch options and drag and drop the generated $HOME/steam-$APPID.log into the comment box.

Eernstp 2019-03-31 github

No crashes on 4.2-1 here, played quite a lot! Ubuntu 19.04, RADV 19.0.1

Rrobyncuppen 2019-03-31 github

@kisak-valve
This time I could play the game for quite a while (15 minutes or so) and got a error popup. Forgot to make a screenshot, unfortunately.

steam-238960.log

Eevilch3n 2019-03-31 github

For me Path of Exile worked seemingly flawless on 3.16-8 beta but when I try it with 4.2-1 it crashes after a minute or two of playing, without any error message or popup. It just crashes straight to desktop.

Proton: 4.2-1
Kernel: 5.0.4-arch1-1-ARCH
Distro: Antergos Linux x86_64
WM: i3-gaps
CPU: Intel i5-4590 3.7Ghz
GPU: Nvidia GTX 770 (418.56)

*edit
Now it happens with 3.16-8 as well

same here, i will try to start it with log-command next time ill play

Ppoeonlinuxpls 2019-04-03 github

I had the same problem stuck on wheels and then froze... Have any of you looked at your memory usage? that is what one of the problems is for sure, mine was capped and I have 4gb of ddr4 which is trash but its not enough to play well NOT with them increasing memory and requirements.. so back to windows I go until I get more RAM. If anyone has less memory and it's working fine please let me know!

Ddylrich 2019-04-06 github

I just want to add another data point to the bug where this game does not run on resolutions > 1920 x 1080. When I launch this using my native resolutions (2560 x 1440 or 3440 x 1440), the game will get to the grinding gear games logo and then freeze my system when the animation finishes. Changing my system resolution to 1920 x 1080 on both of my monitors allowed the game to launch to the main screen. Let me know if I need to provide any logging for the crash to help along a fix!

My system information:
Proton version: 4.2.2 (this happened on old 3.1x versions as well)
Kernel: 5.0.5-200.fc29.x86_64 (this happened on 4.x kernels as well)
GPU: Nvidia 1070ti using driver version 418.56
Distro: Fedora 29 x86
CPU: Ryzen 2700X
Misc: Using KDE as a desktop environment

CCubeTheThird 2019-04-08 · hidden on GitHub github

The game seems to be crashing for me on startup (no window comes up or anything). Here is the log if anyone could provide insights:

steam-238960.log

At a glance it looks like an issue loading the Vulkan driver, but I have confirmed Vulkan to be working with other games.

Kkisak-valve maintainer 2019-04-08 · hidden on GitHub github

Hello @CubeTheThird, please copy your system information from Steam (Steam -> Help -> System Information) and put it in a gist, then include a link to the gist in this issue report.

CCubeTheThird 2019-04-08 · hidden on GitHub github

Here is my system information.

Kkisak-valve maintainer 2019-04-08 · hidden on GitHub github

You're running Steam with the Steam runtime disabled, so you or your distro's package maintainer for Steam is responsible for resolving any missing dependencies including libvulkan.so.1. Please retest with steam-runtime or verify you have the vulkan-icd-loader and lib32-vulkan-icd-loader packages installed.

Rrobyncuppen 2019-04-08 github

@kisak-valve I have done a few runs with the mostly the same specs as before:
Some runs where short (5 minutes or so, mostly the last two, which involved the areas from the Delve expansion (which were fine two days earlier)). but other runs lasted more than an hour.

Proton: 4.2-2
Kernel: 5.0.6-arch1-1-ARCH
Distro: Antergos Linux x86_64
WM: i3-gaps
CPU: Intel i5-4590 3.7Ghz
GPU: Nvidia GTX 770 (418.56-6)

I have compiled a zip of reports with notes, logs and 2 screenshots of errors. hope these are useful.
path_of_exile_reports.zip

CCubeTheThird 2019-04-08 · hidden on GitHub github

Ah it seems I was indeed missing the 32bit version of the library. I wasn't even aware PoE required it, though I'm not sure why I didn't have it installed by default. Thank you for the help.

LLDD19 2019-04-09 github

Is it even possible to run on windowed mode with a custom resolution? Any resolution other than 1080 crashes my desktop.

Eevilch3n 2019-04-09 github

Is it even possible to run on windowed mode with a custom resolution? Any resolution other than 1080 crashes my desktop.

I just want to add another data point to the bug where this game does not run on resolutions > 1920 x 1080. When I launch this using my native resolutions (2560 x 1440 or 3440 x 1440), the game will get to the grinding gear games logo and then freeze my system when the animation finishes. Changing my system resolution to 1920 x 1080 on both of my monitors allowed the game to launch to the main screen. Let me know if I need to provide any logging for the crash to help along a fix!

My system information:
Proton version: 4.2.2 (this happened on old 3.1x versions as well)
Kernel: 5.0.5-200.fc29.x86_64 (this happened on 4.x kernels as well)
GPU: Nvidia 1070ti using driver version 418.56
Distro: Fedora 29 x86
CPU: Ryzen 2700X
Misc: Using KDE as a desktop environment

the most resolution fixes are solved with the latest version of dxvk, ive tried it with lutris and every resolution for me worked super fine, even the performance got quite a boost. Guess you have to wait for proton to implement the latest changes

Ccarnifexx 2019-05-10 github

this helped me to finally start POE in ubuntu 19:
$ sudo apt remove xserver-xorg-video-intel
i don't know why this fixed it, but it seems to run fine so far.

KKorinFlakes 2019-05-10 github

this helped me to finally start POE in ubuntu 19:
$ sudo apt remove xserver-xorg-video-intel
i don't know why this fixed it, but it seems to run fine so far.

Don't quote me on this, but I'm pretty sure those are the old Intel drivers. I would assume you either had your graphics drivers set to them instead of newer ones or instead of drivers for a dedicated card.

Ccarnifexx 2019-05-11 github

Well, you could be right, but I didn't manually install or set any drivers, I don't even know how without research. Its just vanilla ubuntu 19, which came out like a month ago.

Mmeletron 2019-05-12 github

System Information

  • GPU: NVIDIA GeForce GTX 750 Ti
  • CPU: AMD Ryzen 5 1500X (8) @ 3.500GHz
  • OS: Linux Mint 19 Tara x86_64
  • Driver/LLVM version: Nvidia 430.09
  • Kernel version: 4.15.0-48-generic
  • Proton version: 4.2-3

Symptoms

steam-238960.log

Randomly freezes wine-application after alt-tabbing/casting/pointing cursor on item. Cures only with killing Steam and PoE processes in Process Monitor.

BBunnyTheLast 2019-06-08 github

Hey guys, I am not a programmer, but i am having the same problem, and i didn't understand any of your solutions, please do help me i did try EVERYthing i could understand on the web even formatted my laptop

Kkisak-valve maintainer 2019-06-10 github

Path of Exile random crashes

Issue transferred from https://github.com/ValveSoftware/Proton/issues/2795.
@MrPaj posted on 2019-06-10T21:05:25:

Hi,

Path of Exile running is randomly crashing while I am fighting.
Sometimes I can play for hours without issues, other times it happens every 10 minutes.
If you need any logs, please let me know which ones. Below details of my specs

Thank you

Proton 4.2.6
CPU: AMD Ryzen 5 2600X Six-Core Processor
Debian GNU/Linux 10 (buster) (64 bit)
Kernel Version: 4.19.0-5-amd64
Driver: NVIDIA Corporation GeForce GTX 1060 6GB/PCIe/SSE2
Driver Version: 4.6.0 NVIDIA 418.56
RAM: 16056 Mb

Eernstp 2019-06-10 github

Path of Exile is having a lot of random crashes on Windows too right now, they've made some big changes in the latest update! I don't think it has anything to do with Proton, it was stable before PoE 3.7. https://www.pathofexile.com/forum/view-forum/patch-notes

MMrPaj 2019-06-10 github

Path of Exile is having a lot of random crashes on Windows too right now, they've made some big changes in the latest update! I don't think it has anything to do with Proton, it was stable before PoE 3.7. https://www.pathofexile.com/forum/view-forum/patch-notes

The problem seems to happen only the map the Descent in act9. After5~10 minutes killing mobs the game crashes.
I can play other areas for hours without problems
Is there any way (logs or something) to confirm if the issue is only related to Proton or a problem of the game itself?

Thanks

Hhagabaka 2019-06-17 github

I have a laptop with Intel HD 520 and NVIDIA 940MX (driver 430.26). Using Steam's proton 4.2-7, the game runs with the Intel card. It also runs with the NVIDIA only with PROTON_USE_WINED3D=1.

When using NVIDIA without that option, the game often crashes as soon as I login, but sometimes a little later, showing a popup displaying "CreateShaderResourceViewEx". Sometimes it crashes without any message.

Log for a crash with CreateShaderViewEx steam-238960.log
Log for a crash without message 1-steam-238960.log

Qquestionmarkquestionmark 2019-06-20 github

I have a laptop with Intel HD 520 and NVIDIA 940MX (driver 430.26). Using Steam's proton 4.2-7, the game runs with the Intel card. It also runs with the NVIDIA only with PROTON_USE_WINED3D=1.

When using NVIDIA without that option, the game often crashes as soon as I login, but sometimes a little later, showing a popup displaying "CreateShaderResourceViewEx". Sometimes it crashes without any message.

Log for a crash with CreateShaderViewEx steam-238960.log
Log for a crash without message 1-steam-238960.log

I am getting the same crashes, specifically the CreateShaderViewEx which is interesting because sometimes I can click ok on it and keep playing just fine. Act 9 / Act 9 the descent have been particularly bad. Othertimes just loading into the game it closes, or when I'm running around killing things.
Driver: NVIDIA Corporation GeForce GTX 970
Driver Version: 4.6.0 NVIDIA 430.26

?ghost 2019-06-20 github

I have a laptop with Intel HD 520 and NVIDIA 940MX (driver 430.26). Using Steam's proton 4.2-7, the game runs with the Intel card. It also runs with the NVIDIA only with PROTON_USE_WINED3D=1.

When using NVIDIA without that option, the game often crashes as soon as I login, but sometimes a little later, showing a popup displaying "CreateShaderResourceViewEx". Sometimes it crashes without any message.

Same problem here.
NVIDIA Geforce 920M (driver 430.26)

Pptkato 2019-06-23 github

I noticed that the game crashes often times when there's a lot going on, like 25+ enemies on the screen and such.

I'm on AMD.

Eevilch3n 2019-06-25 github

I noticed that the game crashes often times when there's a lot going on, like 25+ enemies on the screen and such.

I'm on AMD.

for me dynamic resolution was the culprit, without it i have like 90% less crashes

Pptkato 2019-07-18 github

Okay, I got a very bad memory problem.

Every map you go to, creates a new instance of that map, and after going through a few maps, my memory usage increases considerably. If I play the game for too long, it'll eventually freeze and kick me back to the login screen with An unexpected disconnection occurred.

Now while monitoring the system resources, I found out that this happens due to the game not having any memory left to use, the system RAM is at 100% usage.

Pptkato 2019-07-30 github

It seems that reducing the texture quality and disabling dynamic resolution scaling reduces the memory consumption by a lot.

?ghost 2019-08-03 github

Hello all

i get fmod-failed-to-initialize-error-code-59 if the sound driver is OSS (Open Sound System) can someone confirm this?

Bbisby 2019-09-19 github

My problem happens when PoE closes...

Game runs fine enough. But when I exit the game, 2 processes of $HOME/.local/share/Steam/ubuntu12_32/steam spike up to 100% CPU usage.

They've stayed that way overnight a few times, they don't seem to eventually end unless I manually SIGKILL, which in turn closes steam down. If I exit steam, they stay running and steam doesn't close. Gameoverlay is disabled, and this doesnt seem to happen with other games.

(arch, stock proton 4.11-5, amd ryzen 1700 + vega64)

Vvans163 2019-09-19 github

My problem happens when PoE closes...

Game runs fine enough. But when I exit the game, 2 processes of $HOME/.local/share/Steam/ubuntu12_32/steam spike up to 100% CPU usage.

They've stayed that way overnight a few times, they don't seem to eventually end unless I manually SIGKILL, which in turn closes steam down. If I exit steam, they stay running and steam doesn't close. Gameoverlay is disabled, and this doesnt seem to happen with other games.

(arch, stock proton 4.11-5, amd ryzen 1700 + vega64)

I get this on a lot of games. Launching the steam game as bare bone as possible seems to help, there is commandline arguments to not launch the friends view, the browser and other shenanigans.

Ggarpu 2019-09-20 github

Is there a way to toggle the shader pre-caching? Twice today Path of Exile's downloaded 6GB shader pre-caching content. Only game that does this, still.

Kkisak-valve maintainer 2019-10-21 github

Add Path of Exile to Proton

Issue transferred from https://github.com/ValveSoftware/Proton/issues/3161.
@hollowsaibot posted on 2019-10-21T20:38:58:

Hi Valve/Proton team,

last month I could play Path of Exile "without" problems on Linux (Ubuntu 19.04) but trying updates and upgrades 4 nvidia and ubuntu 19.10 everything went to hell.
The thing is that I could play normally. I am not sure if the title was allowed to run on Steam with Proton and is just now that it's needed to "force all titles to play with", but please, check this title to be playable with Steam.

Additionally, one month ago the pre-content cache for shaders started every day for this game (downloading 6.3 GB before starts) but now (some weeks ago) the game doesn't create shaders cache. I think that this functionallity is useful, specially if you have a nvidia 1050ti and the fps are on the limit. Please check that too.

Regards,

Kkisak-valve maintainer 2019-10-21 github

Hello @hollowsaibot, please add PROTON_LOG=1 %command% to the game's launch options and drag and drop the generated $HOME/steam-$APPID.log into the comment box.

Ccvelasco88 2019-10-21 github

steam-238960.log
Hi,
I installed 19.10 from zero this time, the driver autoinstalled is the nvidia-435 it seems that the game works (still has fps falls, I test it quick) and the Shader Pre-Caching (Steam > Settings > S.Pre-Cach.) is still 0 MB for now)

If any improvement can be done for that will be welcome. If you have any question, you can tell me.

Regards,

Oohmkay 2019-11-12 github

Anyone else having huge issues running this game? I'm running Manjaro 18.1.0 with Proton 4.11-8 with an NVidia 1060 and the game loads fine and all, it just takes upwards of 1-2 minutes to load into new areas. Also, some of the new areas don't load and seeing new content causes stuttering. I've seen reports of users doing customizations to work around this 'shader loading' issue, but is there any incoming fix coming from Proton? I think most of us would prefer to avoid installing custom pieces of software just to get a single game working

Mmeowmeowfuzzyface 2019-11-13 github

The --waitforpreload launch option vastly improved new area load times for me. It takes longer to startup but areas load pretty much instantly after that.

Due to the frequent updates, the shader stuttering will probably never go away. It does get much better after a few hours of play, though.

Rred667 2019-11-15 github

Hi, POE is not working for me with proton version 4.11.8. It worked fine with 4.11.7.
I use Fedora 31 win an nvidia 1050 ti.

Here's the proton log file:

======================
Proton: 1573156648 proton-4.11-8
SteamGameId: 238960
Command: ['/home/red/.local/share/Steam/steamapps/common/Path of Exile/PathOfExileSteam.exe', '--nopatch']
Options: set()
======================
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
esync: up and running.
78040.038:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b430000: builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
78040.059:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78040.061:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\wineboot.exe" at 0x7f05bcc40000: builtin
78040.065:000a:000b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78040.067:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7f05bca80000: builtin
78040.068:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7f05bcad0000: builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
78040.248:000c:000d:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78040.250:000c:000d:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\services.exe" at 0x400000: PE builtin
78040.252:000c:000d:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78040.253:000c:000d:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7f1323670000: builtin
78040.253:000c:000d:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7f13237b0000: builtin
78040.254:000c:000d:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7f1323590000: builtin
78040.255:000c:000d:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
78040.257:000c:000d:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\userenv.dll" at 0x7f1323550000: builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
78040.306:000f:0010:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78040.307:000f:0010:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\plugplay.exe" at 0x400000: PE builtin
78040.310:000f:0010:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78040.311:000f:0010:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7f849ebc0000: builtin
78040.311:000f:0010:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7f849ed00000: builtin
78040.312:000f:0010:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7f849eae0000: builtin
78040.319:000f:0010:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
78040.373:0016:0017:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78040.373:0016:0017:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\winedevice.exe" at 0x400000: PE builtin
78040.375:0016:0017:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78040.376:0016:0017:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7f7a5ec50000: builtin
78040.376:0016:0017:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7f7a5eda0000: builtin
78040.377:0016:0017:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7f7a5eb80000: builtin
78040.378:0016:0017:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0x67a00000: PE builtin
78040.387:0016:0017:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
78040.406:0016:0019:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7f7a5e500000: builtin
78040.407:0016:0019:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7f7a5e4d0000: builtin
78040.407:0016:0019:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7f7a5e6b0000: builtin
78040.407:0016:0019:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\setupapi.dll" at 0x6a700000: PE builtin
78040.407:0016:0019:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\drivers\\winebus.sys" at 0x7f7a5eb30000: builtin
78040.671:0016:0019:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x65000000: PE builtin
78040.671:0016:0019:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x6bec0000: PE builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
78040.740:001e:001f:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78040.741:001e:001f:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\winedevice.exe" at 0x400000: PE builtin
78040.743:001e:001f:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78040.745:001e:001f:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7f65d3740000: builtin
78040.745:001e:001f:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7f65d3890000: builtin
78040.747:001e:001f:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7f65d3660000: builtin
78040.748:001e:001f:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0x67a00000: PE builtin
78040.759:001e:001f:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
78040.774:001e:0021:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\drivers\\mountmgr.sys" at 0x7f65d3620000: builtin
78040.791:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7f05bbe90000: builtin
78040.793:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7f05bbdb0000: builtin
78040.795:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7f05bbaf0000: builtin
78040.795:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7f05bbb30000: builtin
78040.795:000a:000b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x68a40000: PE builtin
78040.797:000a:000b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
78040.797:000a:000b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x65000000: PE builtin
78040.797:000a:000b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shcore.dll" at 0x64940000: PE builtin
78040.898:000a:000b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x6bec0000: PE builtin
78040.901:000a:000b:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7f05bc050000: builtin
78040.909:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\steam.exe" at 0x7eb10000: builtin
78040.915:0008:0009:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71240000: PE builtin
78040.916:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7ea20000: builtin
78040.916:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ea60000: builtin
78040.917:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e8d0000: builtin
78040.918:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7e800000: builtin
78040.919:0008:0009:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fdc0000: PE builtin
78040.921:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7e5a0000: builtin
78040.921:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e5e0000: builtin
78040.921:0008:0009:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x65200000: PE builtin
78040.928:0008:0009:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x68c40000: PE builtin
78040.928:0008:0009:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shcore.dll" at 0x64b40000: PE builtin
78040.929:0008:0009:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7dbc0000: builtin
78041.039:0008:0009:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x6c0c0000: PE builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Setting breakpad minidump AppID = 238960
Steam_SetMinidumpSteamID:  Caching Steam ID:  76561198070664852 [API loaded no]
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
78041.070:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78041.071:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\explorer.exe" at 0x400000: PE builtin
78041.073:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78041.074:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7efddfcf0000: builtin
78041.074:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7efddfe40000: builtin
78041.075:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7efddfb50000: builtin
78041.076:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7efddfa60000: builtin
78041.076:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
78041.079:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7efddf7b0000: builtin
78041.079:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7efddf7e0000: builtin
78041.088:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b420000: builtin
78041.089:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\explorer.exe" at 0x400000: PE builtin
78041.092:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71040000: PE builtin
78041.093:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7f90f18a0000: builtin
78041.093:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7f90f19e0000: builtin
78041.094:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7f90f16f0000: builtin
78041.095:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7f90f1610000: builtin
78041.095:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fbc0000: PE builtin
78041.098:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7f90f1350000: builtin
78041.098:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7f90f1390000: builtin
78041.185:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x65000000: PE builtin
78041.185:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x6bec0000: PE builtin
78041.195:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\setupapi.dll" at 0x6a700000: PE builtin
78041.195:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7efddf460000: builtin
78041.212:0008:0025:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\setupapi.dll" at 0x6a900000: PE builtin
78041.212:0008:0025:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7d770000: builtin
78041.220:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x68a40000: PE builtin
78041.221:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shcore.dll" at 0x64940000: PE builtin
78041.222:0026:0027:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7efdde920000: builtin
78041.229:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0x6a100000: PE builtin
78041.229:0026:0027:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\actxprxy.dll" at 0x960000: PE builtin
78041.281:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x65000000: PE builtin
78041.281:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x6bec0000: PE builtin
78041.291:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\setupapi.dll" at 0x6a700000: PE builtin
78041.291:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7f90f1010000: builtin
78041.310:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x68a40000: PE builtin
78041.311:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shcore.dll" at 0x64940000: PE builtin
78041.313:0028:0029:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7f90f0570000: builtin
78041.319:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0x6a100000: PE builtin
78041.319:0028:0029:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\actxprxy.dll" at 0x750000: PE builtin
ERROR: ld.so: object '/home/red/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
78041.355:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\kernel32.dll" at 0x7b430000: builtin
78041.373:002f:0030:trace:loaddll:load_native_dll Loaded L"Z:\\home\\red\\.local\\share\\Steam\\steamapps\\common\\Path of Exile\\PathOfExileSteam.exe" at 0x400000: native
78041.377:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0x71240000: PE builtin
78041.378:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\sechost.dll" at 0x7ea80000: builtin
78041.378:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\ADVAPI32.dll" at 0x7ead0000: builtin
78041.387:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7df30000: builtin
78041.388:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0x7de60000: builtin
78041.393:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7dc00000: builtin
78041.393:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7dc40000: builtin
78041.393:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x68c40000: PE builtin
78041.397:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x6fdc0000: PE builtin
78041.397:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x65200000: PE builtin
78041.397:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\shcore.dll" at 0x64b40000: PE builtin
78041.397:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\SHELL32.dll" at 0x7e0a0000: builtin
78041.398:002f:0030:trace:loaddll:load_native_dll Loaded L"Z:\\home\\red\\.local\\share\\Steam\\steamapps\\common\\Path of Exile\\steam_api.dll" at 0x3b400000: native
78041.401:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\WS2_32.dll" at 0x7dbd0000: builtin
78041.407:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\WLDAP32.dll" at 0x7db60000: builtin
78041.409:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\dbghelp.dll" at 0x7d320000: builtin
78041.412:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\msacm32.dll" at 0x66640000: PE builtin
78041.412:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\WINMM.dll" at 0x7d250000: builtin
78041.416:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\bcrypt.dll" at 0x7d120000: builtin
78041.416:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\CRYPT32.dll" at 0x7d160000: builtin
78041.417:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\Normaliz.dll" at 0x62180000: PE builtin
78041.418:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\OLEAUT32.dll" at 0x6a300000: PE builtin
78041.420:002f:0030:err:module:import_dll Library dxgi.dll (which is needed by L"C:\\windows\\system32\\d3d11.dll") not found
78041.421:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\vulkan-1.dll" at 0x7d110000: builtin
78041.422:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\winevulkan.dll" at 0x7d0d0000: builtin
78041.422:002f:0030:err:module:import_dll Library d3d11.dll (which is needed by L"Z:\\home\\red\\.local\\share\\Steam\\steamapps\\common\\Path of Exile\\PathOfExileSteam.exe") not found
78041.422:002f:0030:err:module:import_dll Library dxgi.dll (which is needed by L"Z:\\home\\red\\.local\\share\\Steam\\steamapps\\common\\Path of Exile\\PathOfExileSteam.exe") not found
78041.423:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\IMM32.dll" at 0x6c0c0000: PE builtin
78041.424:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\IPHLPAPI.DLL" at 0x7d0a0000: builtin
78041.426:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\usp10.dll" at 0x7d040000: builtin
78041.426:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\winsxs\\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef\\COMCTL32.dll" at 0x6e8c0000: PE builtin
78041.429:002f:0030:trace:loaddll:load_so_dll Loaded L"C:\\windows\\system32\\winspool.drv" at 0x7cff0000: builtin
78041.429:002f:0030:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\COMDLG32.dll" at 0x6b8c0000: PE builtin
78041.429:002f:0030:err:module:LdrInitializeThunk Importing dlls for L"Z:\\home\\red\\.local\\share\\Steam\\steamapps\\common\\Path of Exile\\PathOfExileSteam.exe" failed, status c0000135
78042.448:0016:001a:trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\drivers\\winebus.sys" : builtin
78042.448:0016:001a:trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\setupapi.dll" : builtin
pid 167530 != 167528, skipping destruction (fork without exec?)

Kkisak-valve maintainer 2019-11-15 github

Hello @red667, err:module:LdrInitializeThunk Importing dlls for L"Z:\\home\\red\\.local\\share\\Steam\\steamapps\\common\\Path of Exile\\PathOfExileSteam.exe" failed, status c0000135 in your log sounds like https://github.com/ValveSoftware/Proton/issues/823#issuecomment-552137632. You may get lucky by trying to run the game with Proton 4.2 and then switching back to 4.11.

Rred667 2019-11-15 github

HI @kisak-valve , I think you are right, bit I also found the log line:

79493.858:002e:002f:err:module:import_dll Library dxgi.dll (which is needed by L"C:\\windows\\system32\\d3d11.dll") not found

So directx is not running which which is required for the game to run.

I already ran the game with Proton 4.2 and it works. But switching back to 4.11.8 renders the same issue again.

Kkisak-valve maintainer 2019-11-15 github

You could try adding WINEDLLOVERRIDES="dxgi=n" %command% to the game's launch options.

Rred667 2019-11-16 github

Thanks! That works.

My current launch options to make the game work are:
DXVK_STATE_CACHE=0 PROTON_NO_ESYNC=0 WINEDLLOVERRIDES="dxgi=n" %command%

PPatola 2019-12-23 github

Does anyone else have the bug where the green buttons do not display any text on them? Apart from that the game seems to work correctly.

Ddearlygparted 2020-02-12 github

After some testing/tweaking, the game is running OK. I wouldn't play Hardcore mode, but it's playable enough for Standard. The following launch options seem to work best for me:

gamemoderun %command% --waitforpreload --nologo --nodx9ex --garbage-generation 2

Arch Linux, i7-2600, GTX 1060, Nvidia 440.59, Proton 5.0-1

The gamemoderun command is for Feral's GameMode.

There are still some issues with FPS drops, as well as high frame times and lag spikes.

Llpeak 2020-03-20 github

My problem happens when PoE closes...

Game runs fine enough. But when I exit the game, 2 processes of $HOME/.local/share/Steam/ubuntu12_32/steam spike up to 100% CPU usage.

They've stayed that way overnight a few times, they don't seem to eventually end unless I manually SIGKILL, which in turn closes steam down. If I exit steam, they stay running and steam doesn't close. Gameoverlay is disabled, and this doesnt seem to happen with other games.

(arch, stock proton 4.11-5, amd ryzen 1700 + vega64)

Same issue for quite a while. I must SIGKILL the two processes for them to terminate.
It does not depend on option used to launch the game.
(Debian testing, proton 5.0-4, GTX 1070Ti with Nvidia driver 440.64)

Ggarpu 2020-03-20 github

Now that you mention it, I was having the same problem with games using dxvk 1.5.5 on regular wine. I switched to 1.5.4, and the problem went away. (I noticed it with Guild Wars 2 and Path of Exile.)

Kkisak-valve maintainer 2020-05-13 github

Missing images in Path of Exile when using Ubuntu 20.04

Issue transferred from https://github.com/ValveSoftware/Proton/issues/3861.
@robert-olofsson posted on 2020-05-13T16:20:45:

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile
  • Steam AppID of the game: 238960

System Information

  • GPU: Radeon RX Vega M GH (Intel hades canyon nuc)
  • Driver/LLVM version: whatever is in ubunutu 20.04 (20.0.4,
  • Kernel version: 5.4.0-28-generic
  • Proton version: Proton 5.0, version-file say: 1588350139 proton-5.0-7-rc3

I confirm:

  • [x] that I haven't found an existing compatibility report for this game.
  • [x ] that I have checked whether there are updates for my system available.

Symptoms

Missing pictures in game. Most visible on the startup screen where the current info images
are missing and in the game the minimap do not show extras on top of it.

Reproduction

Start game. look at login screen

Starting from console I see a few log lines like:
0024:err:wincodecs:PngDecoder_CreateInstance Failed reading PNG because unable to find libpng12.so.0

Look around and notice that modern ubuntu uses libpng16 and does not have an easy libpng12. It is available in a PPA though and installing it solves the issue.

Would be good to build with a more modern libpng.

Kkisak-valve maintainer 2020-05-13 github

Hello @robert-olofsson, the Steam runtime provides libpng12, so it's odd that Proton isn't picking up the library from there. Please copy your system information from Steam (Steam -> Help -> System Information) and put it in a gist, then include a link to the gist in this issue report. There may be a hint in the extended diagnostic section.

Kkisak-valve maintainer 2020-05-14 github

Path of Exile: CreateShaderResourceViewEx: Invalid parameter

Issue transferred from https://github.com/ValveSoftware/Proton/issues/3868.
@Opencode-foss posted on 2020-05-14T17:53:31:

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile
  • Steam AppID of the game: 238960

System Information

  • GPU: i7-4790K Intel HD Graphics
  • Driver/LLVM version: Intel Open Source Technology Center Mesa DRI
    Intel(R) HD Graphics 4600 (HSW GT2)
    3.0 Mesa 20.0.6
  • Kernel version: 5.6.11-arch1-1 x86_64
  • Link to full system information report as Gist: systemreport.txt
  • Proton version: 5.0-7

I confirm:

  • [ I confirm] that I haven't found an existing compatibility report for this game.
  • [ I confirm] that I have checked whether there are updates for my system available.

steam-238960.log

Symptoms

When I am loading into a game it crashes and gives me a CreateShaderResourceViewEx: Invalid parameter exception.
Found it log file: "[CRIT Client 192] [D3D11] CreateShaderResourceViewEx: Invalid parameter."

Reproduction

Kkisak-valve maintainer 2020-05-14 github

Hello @Opencode-foss, looking at your log, DXVK failed a vram allocation when it hit a 1.5GB limit:

err:   DxvkMemoryAllocator: Memory allocation failed
err:     Size:      6553600
err:     Alignment: 4096
err:     Mem flags: 0x1
err:     Mem types: 0x1
err:   Heap 0: 1472 MB allocated, 1019 MB used, 1529 MB allocated (driver), 1536 MB budget (driver), 1536 MB total
OOpencode-foss 2020-05-14 github

Thank you @kakra the quick response. How do you increase your vram limit on Intel Graphics on Linux.

Kkakra 2020-05-15 github

Thank you @kakra the quick response. How do you increase your vram limit on Intel Graphics on Linux.

@Opencode-foss You meant @kisak-valve probably...

LLeopard1907 2020-05-28 github
CCubeTheThird 2020-05-28 github

Just tested out the Vulkan renderer, but I'm crashing after player selection. Seeing a lot of this message in the log:

fixme:dbghelp:elf_search_auxv can't find symbol in module

Full log:
steam-238960.log

I'm using proprietary Nvidia drivers in my case (version 440.82). If more info is needed, please let me know.

Rred667 2020-05-28 github

Just ran the game with the new vulkan renderer. It runs smoother than before.
But I had to change my launch options.

For me these launch options are working:
PROTON_USE_D9VK=1 WINEDLLOVERRIDES="dxgi=n,b" %command%

Mmatheusfaustino 2020-05-29 github

I didn't need to set the D9VK, but I added some others flags to enable cache and some optimization (using vulkan with a MX150):
gamemoderun __GL_SHADER_DISK_CACHE=1 __GL_SHADER_DISK_CACHE_PATH='<random_path>' ENABLE_VKBASALT=1 __NV_PRIME_RENDER_OFFLOAD=1 WINEESYNC=1 DXVK_USE_PIPECOMPILER=1 STAGING_SHARED_MEMORY=1 WINEDLLOVERRIDES="dxgi=n,b" %command%

However, the WINEDLLOVERRIDES="dxgi=n,b" %command% worked fine for me

Tteh-monad 2020-05-30 github

Render works fine, ~50% fps boost on Vulkan.

Vvjr2 2020-06-06 github

Vulkan renderer wont work for me, it crashes at blckscreen

Kkisak-valve maintainer 2020-06-11 github

Path of Exile does not launch with Proton 5.0-8

Issue transferred from https://github.com/ValveSoftware/Proton/issues/3969.
@Dragallur posted on 2020-06-11T07:43:23:

Path of Exile appears for a moment in my processes but then it just disappears and does not launch. (Using Ubuntu 18)

Lltsdw 2020-06-14 github

OS: Arch Linux x86_64
Kernel: 5.6.12-3
GPU: Intel HD Graphics 5500

Experiencing crashes (around 10-15 min of gameplay while using the vulkan renderer) and with this at log of the Client.txt:

[CRIT Client 200] [VULKAN] vk::FragmentedPoolError::FragmentedPoolError: vk::Device::allocateDescriptorSetsUnique

Eevilch3n 2020-06-16 github

OS: ArchLinux
Kernel: 5.7.2-zen1-1-zen
GPU: AMD 5700 XT
Proton 5.0.9

i cant get PoE to run with the new vulkan renderer and amdvlk

as soon as i set the VK_ICD_FILENAMES to /usr/share/vulkan/icd.d/amd_icd64.json the game wont start, it gives my some createSwapChain error

anyone else got this? or maybe even a fix for that?

edit: the radeon vulkan layer has many bugs and graphic-glitches and the map wont render

Jjackarsnel 2020-06-16 github

Crashes when I switch to the new Vulkan renderer, Freezes for about 10 seconds and cuts to a black screen before closing

Tried several different launch options and combinations of what people previously in the tread used.
Tried Proton 5.0-9 and 4.11-13 with the same error in the end.

Please see below for system gist and an error log from proton
System Gist
https://gist.github.com/jackarsnel/b7b4d962f4f86a0b8d52fde7a8b79342
Error Log
https://pastebin.com/4pKU146b

CCubeTheThird 2020-06-17 github

What ultimately worked for me (on Nvidia graphics mind you), I use these launch options:
--waitforpreload --gc 1
(not sure if the garbage collector affects it, but the preload seems to work better).
In the game menu (before selecting a region) I switched the texture settings to medium, which is recommended for the beta Vulkan renderer by the game devs, and then set it to Vulkan. After the change is saved, I save and quit the game, and re-opened (making sure the settings persist) before actually logging in and choosing a character.

Eevenfrost 2020-07-06 github

@CubeTheThird note that garbage collection option is actually -gc, not --gc. And -gc is a short equivalent of --garbage-generation option. See more here: https://pathofexile.gamepedia.com/Launch_options.

Ggarpu 2020-08-08 github

So since using the Vulkan renderer, if I don't play PoE in awhile, the processing Vulkan shaders step in the Steam launch will take awhile. (Other games don't take nearly as long, say, No Man's Sky.) Is this expected?

Ggarpu 2020-08-09 github

I tried on a fresh install, just to see if that would speed things along, and it took about 2 hours to process vulkan shaders. I don't remember it taking nearly this long a few weeks ago. Something change? (Ryzen 5, 1600, Nvidia 1050ti, 450.57 drivers)

Eevenfrost 2020-08-12 github

Same for me. Now Path of Exile recompiles shaders every time I log in Steam. It takes literally hours.

Below is the screenfetch info.

OS: Ubuntu 20.04 focal
Kernel: x86_64 Linux 5.4.0-42-generic
DE: GNOME 3.36.4
WM: Mutter
CPU: Intel Core i7-3770K @ 8x 3.9GHz [67.0°C]
GPU: GeForce GTX 980
RAM: 8664MiB / 15972MiB
Eevenfrost 2020-08-15 github

This is what I'm getting almost every time when starting Steam. It takes about 2 hours to process.

Screenshot from 2020-08-15 11-32-11

Rred667 2020-08-15 github

@evenfrost you can skip this part. Then it will be processed while running the game. Might be some lags while it processes for the first time. But after a while all you need is processed.

Eevenfrost 2020-08-18 github

The issue is it takes a significant amount of resources of my PC (so I assume PoE will be pretty laggy to play during this) and happens almost every time I start Steam.

Ggarpu 2020-08-18 github

PoE isn't very laggy once you get into it, if you skip the processing step. (My current gripe is about patching and how long that takes, but that's also an issue on the standalone client.)

BBartWillems 2020-08-20 github

For some reason I can't skip the shader cache compiler in the beginning.
If I click skip the menu does go away and path of exile starts, but the process doesn't stop and completely nukes my cpu.
I have a Ryzen 9 3950x and it uses 100% of every core for about half an hour

Edit: even after I close steam, it continues building the shader cache

DDragoonZ 2020-09-11 github

game crash after the 3.11.2 patch
here is my proton log
https://pastebin.com/DHJEBBh2

Kkisak-valve maintainer 2020-09-11 github

Hello @DragoonZ, err:steamclient:create_win_interface Don't recognize interface name: SteamUser021 looks like a line of interest in the log. Related: #3886

Tthorsten-passfeld 2020-09-11 github

Yes, the game now crashes after the 3.11.2 patch right when first opening the window. The window opens, stays black for a second and then the game terminates. This is my crash log:
https://pastebin.com/BvJv0HvN

Note that this right at the bottom of the file seems to be the common demoninator:

18666.066:0284:0288:fixme:dbghelp:elf_search_auxv can't find symbol in module
18666.071:0284:0288:fixme:dbghelp:elf_search_auxv can't find symbol in module
18666.072:00b8:00bc:trace:seh:call_stack_handlers handler at 0x7b46bf10 returned 1
18666.072:0284:0288:trace:seh:__regs_NtGetContextThread 0x40: eax=01ccbc58 ebx=7ffdf000 ecx=00000000 edx=02bffc8c esi=02bffdf0 edi=02bffdfc
18666.072:0284:0288:trace:seh:__regs_NtGetContextThread 0x40: ebp=02bffca4 esp=02bffab8 eip=0082ad46 cs=0023 ss=002b flags=00210202
18666.072:0284:0288:trace:seh:__regs_NtGetContextThread 0x40: ds=002b es=002b fs=0063 gs=006b
18666.072:0284:0288:trace:seh:__regs_NtGetContextThread 0x40: dr0=00000000 dr1=00000000 dr2=00000000 dr3=00000000 dr6=00000000 dr7=00000000
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x0082ad46).
18666.077:0284:0288:fixme:dbghelp:elf_search_auxv can't find symbol in module
Register dump:

I'm running the game using Vulkan. Maybe this is different with DX11 and somebody can tell us how to force using DX11 through a config file or something. I hope we can get this resolved soon, this is a huge bummer that the game no longer works, especially a week before such an awesome league.

Edit: It's weird that @jackarsnel had the same error message back in June.

Ggarpu 2020-09-11 github

Brand new installation for me. 5.09 proton, 5.9 from glorious eggroll crashes, too. Anyone try stock wine or wine-staging?

Log attached...
steam-238960.log

Sorry. Hardware profile: https://gist.github.com/garpu/2131323653d75ab871afd0bbd081487b

ETA: Proton-alyx worked for me.

DDragoonZ 2020-09-11 github

Hello @DragoonZ, err:steamclient:create_win_interface Don't recognize interface name: SteamUser021 looks like a line of interest in the log. Related: #3886

thanks!
works fine with the patched build https://github.com/stevenlafl/Proton/releases/tag/proton-5.0-7-alyx-2

Eeffinjdent 2020-09-11 github

I still get the crash although I don't think its actually using the alyx version. Is ~/.var/app/com.valvesoftware.Steam/data/Steam/compatibilitytools.d/ the correct directory for the flatpak?

I can select the version here.
Screenshot from 2020-09-11 05-40-20

But oddly once steam restarts the checkbox for "Enable steam play for all other titles" unchecks itself. Top of game log still reads 5.0.9.

steam-238960.log

Kkisak-valve maintainer 2020-09-11 github

Hello @effinjdent, your log says that proton-5.0-9 is being used instead of what you expected. Maybe check the per-game Steam Play settings?

DDragoonZ 2020-09-11 github

Hi @kisak-valve , will this bug be fixed in future proton release? Or this should be cared about by game dev themselves?

Eeffinjdent 2020-09-11 github

@kisak-valve I am saying that option, when I check it with the alyx selected, literally unchecks itself after steam restart.

Kkisak-valve maintainer 2020-09-11 github

The issue here is that the game updated steamworks to a version that Proton's Steam forwarding library hasn't been taught about yet. This happens semi-regularly and Proton needs to be taught about each new version. We should expect this to be resolved at some point with a Proton update.

@effinjdent, you've encountered https://github.com/ValveSoftware/steam-for-linux/issues/6043.

Eeffinjdent 2020-09-11 github

Is there a workaround for that? Reading that link is pretty depressing.

Vvjr2 2020-09-11 github

Even the Proton GE versions wont make the game launch, as @effinjdent said, this is very depressing, specially when the new league is at the corner :(

Eernstp 2020-09-11 github

I set the override for Path of Exile to proton-5.0-7-alyx-2 and then the game works here!

Vvjr2 2020-09-11 github

I can confirm proton 5.0-7 alyx works, however performance is worse than 5.0-9 was used to

Ffarmboy0 2020-09-12 github

proton-5.0-7-alyx-2 doesnt work completely. It crashes on a Niko map (when finding sulphite) with a err:steamclient:create_win_interface Don't recognize interface name: SteamClient020

Edit: Looks like my crashes are unrelated to Niko and sulphite.

Kkisak-valve maintainer 2020-09-13 github

Path of Exile 3.11.2 crashes on launch

Issue transferred from https://github.com/ValveSoftware/Proton/issues/4188.
@Storm-Engineer posted on 2020-09-12T23:53:59:

Path of Exile just released a large patch that required re-downloading the whole game because it changed how it stores data. (Info: https://www.pathofexile.com/forum/view-thread/2933680)

Since then, the game crashes on start. I've tried several different versions of Proton, but it always crashes. Before the patch I was using 4.11-GE-1. Below are the terminal outputs for all the versions I tried. Apart from the 4.11 version, they contain stack traces.

poe-crash-Proton-4.11-GE-1.txt
poe-crash-Proton-5.0-1.txt
poe-crash-Proton-5.11-GE-1-MF.txt
poe-crash-Proton-5.11.GE.3.MF-1.txt

System information:
poe-crash-sysinfo.txt

SStorm-Engineer 2020-09-13 github

I forgot to add, that I had "Vulkan (beta)" selected in the game instead of DirectX. Not sure if that affects this issue.

Also, confirming that the "alyx" build seems to work, at least the game now launches. Can't test gameplay at the moment because going to sleep...

P.s.: Thanks for the transfer, I didn't find this existing ticket for some reason.

EDIT: Tested the "alyx" build, works like a charm, had no issues but I only played for half an hour perhaps.

Kkakra 2020-10-12 github

For me, it works in GE-9-ST even in Vulkan mode, when it previously only showed wild flickering in-game (last tried a few weeks ago). The only thing left is: Assets and effects seem to take a long time to load, they are just invisible for like 30-60s, not sure if this is due to a tweak in GE. Also, occasionally, there are black boxes flickering for a blink of an eye sometimes. I've done only a quick test but gameplay seems very smooth with Vulkan compared to DX11, except that framerates are lower (around stable 30 fps instead of 45+ fps at 4k).

(using NVIDIA 455.22.04 on Gentoo)

Tthorsten-passfeld 2020-10-12 github

I've done only a quick test but gameplay seems very smooth with Vulkan compared to DX11, except that framerates are lower (around stable 30 fps instead of 45+ fps at 4k).

I would not describe the whole gameplay experience as smooth compared to what I see people on Windows experience with equal or worse hardware. I have a 1080 Ti and a 3900X. Gameplay in acts is 100% smooth. When it comes to endgame (where the game really begins), usually it is pretty smooth and reaches 144 FPS for me, but when I'm in a juicy map with large mob packs, conqueror packs or Delirium fog, the frame rate TANKS. Like to barely-playable-I-hope-I-don't-die-levels.
Not sure what causes this discrepancy compared to Windows, but whenever there is a lot going on, it goes to like 3-5 FPS for a while. Also, the frame rate isn't a smooth 144 FPS all the time. Mostly, it fluctuates between 144 FPS and like 30 FPS with everything inbetween.
It's a decent experience overall, but calling this smooth is not realistic. I'm not even running on high settings. Pretty much the default settings. And I'm using gamemode and Proton-tkg-18 to run the game.
It is definitely playable (and acceptable most of the time), but I have a feeling that it is a lot more smooth on Windows when I look at streamer gameplay. When the Vulkan renderer was first introduced, though, the game performed a LOT better. This almost just seems like an issue that only GGG can solve. Not sure if the Proton team could even do anything about these performance issues.

Eernstp 2020-10-12 github

but when I'm in a juicy map with large mob packs, conqueror packs or Delirium fog, the frame rate TANKS

Yeah this is my experience too. You can experience something similar on Windows, specially some versions of PoE did, but it's much much less severe.
Nvidia or AMD doesn't seem to matter. But it must be related to asset/shader loading somehow.

Tthorsten-passfeld 2020-10-12 github

Nvidia or AMD doesn't seem to matter. But it must be related to asset/shader loading somehow.

I don't think that shader loading is the issue here. I have the game installed on an M.2 SSD and I took the extra steps to put the Vulkan shader cache for the game on its own tmpfs directly in my RAM. It's about 500MB in size as of now.
To me, the lags/huge frame drops when a LOT is going on feel like they are related to shader compilation.

Kkakra 2020-10-12 github

DirextX and Vulkan take a different approach to shader compilation, also I think there needs to be some conversion at least for some graphics drivers. So using DXVK to translate from DX11 to Vulkan isn't and cannot be optimal which leads to blocking behavior during shader compilation/transformation which DXVK tries to solve by remembering all shaders of the pipeline and replaying that early after init to get all shaders compiled before the game has a chance to block on that. Vulkan should be an opportunity to get much better here as it should probably be the same for shaders, be it Windows or Linux under the hoods. I think the Vulkan renderer of PoE just still lacks a lot of optimization and is by far less mature than the DX11 implementation, and DXVK has come a long way of also becoming a very optimized peace of software (which sometimes even beats native DX11) but still, there's that different approach of both APIs handling shaders.

Asset loading seemed to have no effect on the FPS I was seeing, and there was no stuttering during that time. I also think it's compiling the shaders that's causing the end-game performance problems because there are lots of new effects all the time.

Nnydn 2021-02-11 github

Thanks to the new changes in Proton Experimental, the game runs flawlessly now with the Vulkan renderer!
Like really, I cannot emphasize enough how insanely smooth the gameplay is, it's amazing, thank you!

Tthorsten-passfeld 2021-02-11 github

Oh wow. At first, I didn't believe you. But this is absolutely insane. I just ran a super juiced delirium map and stayed above 140 FPS almost at all times. No frame drops at all. That is crazy. Whoever was responsible for these changes, I cannot thank them enough.

Ffarmboy0 2021-02-14 github

The game doesnt start for me with Proton 5.13, Proton Experimental or Proton-GE 6.0. No Proton log is written. The steam commandline output doesnt have anything either.

Edit: The game starts with Proton Experimental and other other soldier-based Proton versions now. The fault was my setup. I can now confirm the improvements with Proton Experimental and only with Proton Experimental.

Iitsrave 2021-02-28 github

I've experienced massive frame drops to 1-5fps, game occasionally freezes for couple seconds. Frames dropping especially on intense gameplay. I'm on Proton Experimental and mesa-git.

Mmad-max-traveller 2021-03-05 github

The other day, Proton was updated to version 5.13-6 and PoE stopped running.

Kkisak-valve maintainer 2021-03-05 github

Hello @mad-max-traveller, please add PROTON_LOG=1 %command% to the game's launch options and attach the generated $HOME/steam-$APPID.log to this issue report as a file. (Proton logs compress well if needed.) Also, please copy your system information from Steam (Steam -> Help -> System Information) and put it in a gist, then include a link to the gist in this issue report.

Eernstp 2021-03-05 github

It runs fine here with both Proton 5.13-6 and Proton experimental. (AMD Mesa system)
Make sure other Vulkan and Proton titles run as normal also, so it's not an issue with your system.

LLucasNBarbosa 2021-03-06 github

@kisak-valve I have the same problem, so here are the same files you requested to access. I just installed the game though, first time trying it. Installed my distro yesterday, so everything should be up to date. vulkaninfo shows the packages are installed.

Gist -> https://gist.github.com/LukeSkyswimmer/e0ef36592fead36a13b468df8a726d03

Proton log -> steam-238960.log

Kkisak-valve maintainer 2021-03-06 github

Hello @LukeSkyswimmer, looking at your system information, it looks like Vulkan is broken inside the Steam Linux Runtime - Soldier container environment and you've encountered https://github.com/ValveSoftware/steam-runtime/issues/312.

Maybe try setting the game's launch options to __NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only %command% and test if that has an effect? That should enable nVidia's Vulkan Optimus layer and tell it to only let the game see the nVidia GPU. If that doesn't help, then give https://github.com/ValveSoftware/steam-runtime/issues/312#issuecomment-739441559 a try.

Mmad-max-traveller 2021-03-06 github

With the help of Steam Play, I played 2 games. This is PoE and The Witcher. Both now does not work.
Gist -> https://pastebin.pl/view/cb88cfee

Proton log -> https://pastebin.pl/view/2ce7def8

Kkisak-valve maintainer 2021-03-06 github

Hello @mad-max-traveller, it looks like you've encountered https://gitlab.freedesktop.org/mesa/mesa/-/issues/4396, please try temporarily disabling lavapipe with something like:

sudo mv /usr/share/vulkan/icd.d/lvp_icd.i686.json /usr/share/vulkan/icd.d/lvp_icd.i686.json.disabled
sudo mv /usr/share/vulkan/icd.d/lvp_icd.x86_64.json /usr/share/vulkan/icd.d/lvp_icd.x86_64.json.disabled

and see if that has an effect.

After testing, rename the lavapipe icds back to where they were and try setting the game's launch options to __NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only %command% and see if that avoids the issue.

Mmad-max-traveller 2021-03-06 github

sudo mv /usr/share/vulkan/icd.d/lvp_icd.i686.json /usr/share/vulkan/icd.d/lvp_icd.i686.json.disabled
sudo mv /usr/share/vulkan/icd.d/lvp_icd.x86_64.json /usr/share/vulkan/icd.d/lvp_icd.x86_64.json.disabled

That helped. Both games started, thanks!

Mmad-max-traveller 2021-03-06 github

__NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only %command%

But this parameter does not start. It starts only if you rename files.

LLucasNBarbosa 2021-03-06 github

Hello @LukeSkyswimmer, looking at your system information, it looks like Vulkan is broken inside the Steam Linux Runtime - Soldier container environment and you've encountered ValveSoftware/steam-runtime#312.

Maybe try setting the game's launch options to __NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only %command% and test if that has an effect? That should enable nVidia's Vulkan Optimus layer and tell it to only let the game see the nVidia GPU. If that doesn't help, then give ValveSoftware/steam-runtime#312 (comment) a try.

@kisak-valve you're a beast! It's working beautifully, getting more frames than when I was playing on Windows. I've been trying to figure this out the past 2-3 days, so you just made a man very happy :)

DDarkOverlord69 2021-03-07 github

Hello Guys!
I freshly installed Manjaro Linux and tried to run Path of Exile through the Steam Client and Proton(i tried different versions).
The Installation through Steam went fine, i can also start the game but after 13 seconds in main menu the game crashes. also when trying to change to vulkan in the ingame options, no mouseinput is recognized anymore. after that, the 13 sec crash happens again.
i ran those commands to install vulkan and llvm packages described in this page: https://github.com/NoXPhasma/protondb_faq/wiki/Graphics-driver-installation#archmanjaro
logfile: steam-238960.log
system information (EDIT fixed links)
hopefully this information is helpful. thank you

DDarkOverlord69 2021-03-09 github

hello again, i fixed it just by reinstalling. something got corrupted during download/installation.

Ffarmboy0 2021-04-05 github

I have tested Path of Exile with Proton 6.3. Unfortunately whatever patch allows Proton Experimental to run this game smoothly was not added to Proton 6.3.

XXenHat 2021-04-24 github

I tried several versions of proton, from newer to older and the only way I could get it to run on a fresh steam install was with Proton-5.0.10

Aanders-larsson 2021-04-25 github

I've been running Path of Exile with Proton Experimental the last few weeks and it has been working perfectly every day until today when I started getting this insane stuttering. I'm using vulkan engine in game. It goes from 100 fps to ~3 fps and jumps back to the previous fps afterwards again but makes the game unplayable.

AFAIK there has been no changes to my system since yesterday. Do we know if there has been any changes to Proton Experimental which might cause this? Is it possible to have Steam rebuild the shader cache?

Aanders-larsson 2021-04-26 github

Update: Apparently Path of Exile had switched from using Vulkan to DirectX. After switching back to Vulkan everything works perfectly again.

Sorry for the noise.

Rrobyncuppen 2021-04-27 github

I tried several versions of proton, from newer to older and the only way I could get it to run on a fresh steam install was with Proton-5.0.10

I'm having the same issue. With other (only tried newer) versions of proton it just gives the error.

compatibility tool configuration failed

If I can do anything to provide more info (and what the preferred method of doing so is) let me know.

Update
Today I noticed Proton 6.3 had an update so I switched back by unchecking "use a specific compatibility tool" hoping it would work once again. It did not. However, leaving the game on 6.3 I rebooted my system and after the reboot the game launched.

AAnupalabdhi 2021-05-07 github

The game for me has started crashing on the main log-in screen just after startup.

I tried switching around the different Proton versions, with it refusing to start up on older versions, while on Experimental and Proton 6.3, it just crashes at Log in screen.

System Info

steam-238960.log

Kkisak-valve maintainer 2021-05-07 github

Hello @Anupalabdhi, warn:debugstr:OutputDebugStringA "OODLE ERROR : LZ corruption : DecodeOneQuantum fail!\n" and possibly warn:debugstr:OutputDebugStringA "OODLE ERROR : LZ corruption : bad decode len\n" looks some lines of interest from the log.

AAnupalabdhi 2021-05-07 github

Hello @kisak-valve ,

Thanks for looking over my logs. After your hints I re-validated my game client and some files were indeed corrupted, after re-fetching those files, the game seems to be working now.

Thank you for your time.

RRainoutt 2021-05-08 github

Hello, my game crashes on the loading gears before the menu most of the time, sometimes it boots and I can play but most of the times I need to open it multiple times until it lets me play. Here its my log.
steam-238960.log

Also re-validating my install does nothing. So it doesnt looks like its an install problem.

Ooxwivi 2021-06-28 · hidden on GitHub github

I tried to use the beta Vulkan renderer, but immediately after changing it in the settings, the game does not respond to any input, keyboard or mouse. Idle animations and BGM remains uninterrupted as far as I can tell, but I can neither cancel nor save the new settings; force quitting is the only way out.

Ooxwivi 2021-06-28 github

Excuse me, please ignore my last comment; it turns out it was taking a long time for the switch to happen. Very sorry for the wrong report.

MMithicSpirit 2021-07-10 github

PoE crashes whenever I enter the Labyrinth, either during the loading screen or a couple of seconds after entering the map. I've tried changing graphics settings and both DirectX and Vulkan, all to no avail.
steam-238960.log

Kkisak-valve maintainer 2021-07-10 github

Hello @MithicSpirit, info: Device name: : Radeon RX 570 Series info: Driver version : 2.0.189 in your log hints that you're using AMDVLK. Can you test if the same issue happens with mesa/RADV?

MMithicSpirit 2021-07-10 github

That fixed the issue, thank you. For future reference for anyone else that is having this problem you need to set the environment variable VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/radeon_icd.i686.json:/usr/share/vulkan/icd.d/radeon_icd.x86_64.json (exact filename/path might vary between distros).

NNicTanghe 2021-07-20 github

Id like steam to fix this so i can play it on the steam deck.

Aalaborderie 2021-08-11 github

Hey everyone and thanks to everyone being active on this awesome project!

I'm currently having issues with Path of Exile as it crashes randomly, while loading, playing or being AFK.
I tried using Proton 5.0, 6.3 and experimental with no luck. I tend to think I have less crashes using DirectX11 than Vulkan in game options but I still have them (and that might be totally random).

I played for 6 hours straight using vulkan today without a single crash. Shutdown PC for a break and came back to a game that crashes every 10 minutes (probably close to 10 crashes tonight).

It sometimes hangs my Desktop Environment (kernel panic?) but its like one time out of 10.

I got the logs for the last crash, using vulkan and proton experimental.
I'm a web dev so I have some basics to reading logs and such, all I see is a page fault error, maybe someone could help me read those logs so I can understand what goes wrong?

Thanks in advance.

Info of my system :

             /////////////                alaborderie@pop-os
         /////////////////////            ------------------
      ///////*767////////////////         OS: Pop!_OS 21.04 x86_64
    //////7676767676*//////////////       Host: A0000001
   /////76767//7676767//////////////      Kernel: 5.11.0-7620-generic
  /////767676///*76767///////////////     Uptime: 1 hour, 9 mins
 ///////767676///76767.///7676*///////    Packages: 2631 (dpkg), 6 (flatpak)
/////////767676//76767///767676////////   Shell: zsh 5.8
//////////76767676767////76767/////////   Resolution: 3840x1600, 1440x2560
///////////76767676//////7676//////////   DE: GNOME 3.38.4
////////////,7676,///////767///////////   WM: Mutter
/////////////*7676///////76////////////   WM Theme: Pop
///////////////7676////////////////////   Theme: Pop-dark [GTK2/3]
 ///////////////7676///767////////////    Icons: Pop [GTK2/3]
  //////////////////////'////////////     Terminal: x-terminal-emul
   //////.7676767676767676767,//////      CPU: AMD Ryzen 7 3700X (16) @ 4.050GHz
    /////767676767676767676767/////       GPU: AMD ATI Radeon RX 6800/6800 XT / 6900 XT
      ///////////////////////////         Memory: 4298MiB / 32078MiB
         /////////////////////
             /////////////


I'm using mesa drivers, glxinfo -B returns this if it can help:

name of display: :1
display: :1  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: AMD (0x1002)
    Device: AMD Radeon RX 6900 XT (SIENNA_CICHLID, DRM 3.40.0, 5.11.0-7620-generic, LLVM 11.0.1) (0x73bf)
    Version: 21.0.1
    Accelerated: yes
    Video memory: 16384MB
    Unified memory: no
    Preferred profile: core (0x1)
    Max core profile version: 4.6
    Max compat profile version: 4.6
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.2
Memory info (GL_ATI_meminfo):
    VBO free memory - total: 15242 MB, largest block: 15242 MB
    VBO free aux. memory - total: 16168 MB, largest block: 16168 MB
    Texture free memory - total: 15242 MB, largest block: 15242 MB
    Texture free aux. memory - total: 16168 MB, largest block: 16168 MB
    Renderbuffer free memory - total: 15242 MB, largest block: 15242 MB
    Renderbuffer free aux. memory - total: 16168 MB, largest block: 16168 MB
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 16384 MB
    Total available memory: 32752 MB
    Currently available dedicated video memory: 15242 MB
OpenGL vendor string: AMD
OpenGL renderer string: AMD Radeon RX 6900 XT (SIENNA_CICHLID, DRM 3.40.0, 5.11.0-7620-generic, LLVM 11.0.1)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 21.0.1
OpenGL core profile shading language version string: 4.60
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 4.6 (Compatibility Profile) Mesa 21.0.1
OpenGL shading language version string: 4.60
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile

OpenGL ES profile version string: OpenGL ES 3.2 Mesa 21.0.1
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20

steam-238960.log

EDIT: I tried putting the VK_ICD_FILENAMES in the launch options and no crash so far, not sure if it's related yet.
EDIT2: Just got a crash with the exact same message : Unhandled exception: page fault on read access to 0xffffffffffffffff in 64-bit code (0x0000000141695d77).

Nnydn 2021-08-12 github

@alaborderie I'm not familiar with PopOS, any particular reason you are using older mesa drivers? You have 21.0.1 (released 2021-03-24 22:41) but the most recent one is 21.2.0.

Vulkan "should be" the better option on AMD cards with RADV for PoE currently.

Edit: VK_ICD_FILENAMES is not needed if you don't have multiple vulkan drivers installed, iirc. In case you have multiple, I'd try to delete amdvlk first and just stick to mesa.

Aalaborderie 2021-08-12 github

@nydn Pop_OS! basically is Ubuntu with more frequent kernel and driver updates, so nothing to care about.
I was using latest mesa drivers shipped with my distro and blindly thought it was the latest stable version. They (used to?) ship new drivers relatively soon after their release.

I'll install the latest version and play a bit tonight, will keep you updated if that changes anything.

Thanks for the info, I only have mesa installed, I will also remove the launch option.

Aalaborderie 2021-08-13 github

Hey, me again.

I now use 21.2.0 after your suggestion and was able to play for 5hours straight yesterday before having a crash, and then it crash twice in a row so I went to bed lol.

Just finished my workday and decided to play a bit, same issue, 1 crash a few minutes after I logged in, did a few maps so I guess 30 minutes before having a second crash, and then 2 more crashes in a row, only a few minutes after being in game.

I'm sending again my steam log, but I see the same error. Page fault error.

Could it be that my PoE install is broken?
I'm reinstalling right now "just in case"

steam-238960.log

EDIT: Reinstalling the game didn't fix the issue, game crashed after 10minutes of playing

EDIT2: Ok so I actually had a faulty RAM, so I switched it and everything is working really fine now. :D Thanks for the help!

Kkisak-valve maintainer 2021-10-19 github

Path of Exile (238960) Regression: Mouse cursor black block

Issue transferred from https://github.com/ValveSoftware/Proton/issues/5230.
@rgehlen posted on 2021-10-19T02:16:11:

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile
  • Steam AppID of the game: 238960

System Information

  • GPU: RX 570
  • Driver/LLVM version: mesa 21.2.3
  • Kernel version: 5.14.9
  • Proton version: current experimental from steam (7554304)

Symptoms

Mouse cursor is a black block. This problem only appeared today. Worked fine before.

https://rgehlen.github.io/output.webm

https://gist.githubusercontent.com/rgehlen/8ae51d4b7101c3f4b374ed30de10b334/raw/8d673d23a120a45bd921ce28ba2233facf14105e/steam-238960.log

Also works fine on Proton 6.3-7

Kkisak-valve maintainer 2021-10-19 github

Hello @rgehlen, please copy your system information from Steam (Steam -> Help -> System Information) and put it in a gist, then include a link to the gist in this issue report. What I'd like to confirm is that you're really using a substantially older mesa version with a current kernel.

Rrgehlen 2021-10-19 github

The mesa version is actually 21.2.3, I copied the version from the wrong container by mistake.

https://gist.github.com/38aa635eca0a68d435aa473af9b3266f

Edit: Updated to mesa 21.2.4, no change.

Eedmondo 2021-10-19 github

I can reproduce the black square cursor issue with Proton Experimental (19.10.2021).

With Proton 6.3-7 the cursor looks fine.

Aanders-larsson 2021-10-19 github

Hello. I can add that the mouse cursor has turned into a black block for me as well. It was working correctly before (earlier this league).

  • GPU: Nvidia GTX 1070
  • Driver: nvidia-drivers 495.29.05
  • Kernel version: 5.14.10
  • Proton version: Current Experimental

It helps to switch to 6.3-7.

Eedmondo 2021-10-20 github

With today Proton Experimental update the black block cursor issue is fixed on my configuration (RX 470).
Thanks.

Wwastedcoffeecup 2022-06-11 github

After recent updates, Path of Exile crashes frequently during game play. According to PROTON_LOG information the crashes all occur during the same function. This can be seen in the back traces located at the end of the crash logs below.

Crash logs:
202206111200-steam-238960.log
202206110924-steam-238960.log
202206110754-steam-238960.log

System Information:
System:
  Host: c-box Kernel: 5.17.5-76051705-generic x86_64 bits: 64 compiler: gcc
    v: 11.2.0 Desktop: GNOME 42.1 Distro: Pop!_OS 22.04 LTS
    base: Ubuntu 22.04 LTS Jammy
Machine:
  Type: Desktop Mobo: ASRock model: AB350 Gaming K4
    serial: <superuser required> UEFI-[Legacy]: American Megatrends v: P5.40
    date: 12/19/2018
CPU:
  Info: 8-core model: AMD Ryzen 7 1800X bits: 64 type: MT MCP arch: Zen
    rev: 1 cache: L1: 768 KiB L2: 4 MiB L3: 16 MiB
  Speed (MHz): avg: 2075 high: 3034 min/max: 2200/3600 boost: enabled
    cores: 1: 1836 2: 1870 3: 1853 4: 1827 5: 1830 6: 1846 7: 2790 8: 3034
    9: 2527 10: 2752 11: 1903 12: 1826 13: 1846 14: 1849 15: 1845 16: 1771
    bogomips: 114967
  Flags: avx avx2 ht lm nx pae sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm
Graphics:
  Device-1: NVIDIA GP104 [GeForce GTX 1080] vendor: eVga.com. driver: nvidia
    v: 510.73.05 bus-ID: 26:00.0
  Display: x11 server: X.Org v: 1.21.1.3 driver: X: loaded: nvidia
    unloaded: fbdev,modesetting,nouveau,vesa gpu: nvidia resolution:
    1: 1920x1080~60Hz 2: 1920x1080~60Hz
  OpenGL: renderer: NVIDIA GeForce GTX 1080/PCIe/SSE2
    v: 4.6.0 NVIDIA 510.73.05 direct render: Yes
Audio:
  Device-1: NVIDIA GP104 High Definition Audio vendor: eVga.com.
    driver: snd_hda_intel v: kernel bus-ID: 26:00.1
  Device-2: AMD Family 17h HD Audio vendor: ASRock driver: snd_hda_intel
    v: kernel bus-ID: 28:00.3
  Sound Server-1: ALSA v: k5.17.5-76051705-generic running: yes
  Sound Server-2: PulseAudio v: 15.99.1 running: no
  Sound Server-3: PipeWire v: 0.3.51 running: yes
Network:
  Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet
    vendor: ASRock driver: r8169 v: kernel port: d000 bus-ID: 25:00.0
  IF: enp37s0 state: up speed: 1000 Mbps duplex: full
    mac: 70:85:c2:42:3a:e1
  IF-ID-1: virbr0 state: down mac: 52:54:00:7d:85:ab
Drives:
  Local Storage: total: 1.56 TiB used: 214.2 GiB (13.4%)
  ID-1: /dev/sda vendor: Toshiba model: TR150 size: 223.57 GiB
  ID-2: /dev/sdb vendor: Crucial model: CT1000BX500SSD1 size: 931.51 GiB
  ID-3: /dev/sdc vendor: A-Data model: SU650 size: 447.13 GiB
Partition:
  ID-1: / size: 215.06 GiB used: 30.62 GiB (14.2%) fs: ext4 dev: /dev/sda1
  ID-2: /home size: 915.82 GiB used: 182.69 GiB (19.9%) fs: ext4
    dev: /dev/sdb1
Swap:
  ID-1: swap-1 type: partition size: 4 GiB used: 915.2 MiB (22.3%)
    dev: /dev/dm-0 mapped: cryptswap
Sensors:
  System Temperatures: cpu: 36.0 C mobo: N/A gpu: nvidia temp: 47 C
  Fan Speeds (RPM): N/A gpu: nvidia fan: 0%
Info:
  Processes: 412 Uptime: 2d 17h 37m Memory: 15.62 GiB used: 4.56 GiB (29.2%)
  Init: systemd runlevel: 5 Compilers: gcc: 11.2.0 Packages: 2751 Shell: Bash
  v: 5.1.16 inxi: 3.3.13
Kkisak-valve maintainer 2022-12-02 github

Can't start Path of Exile anymore after switching from nVidia to AMD

Issue transferred from https://github.com/ValveSoftware/Proton/issues/6358.
@x0r13 posted on 2022-12-02T01:43:15:

Proton Version: 7.04

[System]
OS:              Ubuntu 20.04 focal
Arch:            x86_64
Kernel:          5.4.0-132-lowlatency
Desktop:         Budgie:GNOME
Display Server:  x11

[CPU]
Vendor:          AuthenticAMD
Model:           AMD Ryzen 7 1700 Eight-Core Processor
Physical cores:  8
Logical cores:   16

[Memory]
RAM:             15.6 GB
Swap:            3.8 GB

[Graphics]
Vendor:          AMD
OpenGL Renderer: AMD Radeon RX 6600 (dimgrey_cavefish, LLVM 14.0.1, DRM 3.46, 5.4.0-132-lowlatency)
OpenGL Version:  4.6 (Compatibility Profile) Mesa 22.1.0-devel
OpenGL Core:     4.6 (Core Profile) Mesa 22.1.0-devel
OpenGL ES:       OpenGL ES 3.2 Mesa 22.1.0-devel
Vulkan:          Supported

I recently switched from a nVidia 1060 6GB to a rx6600 AMD GPU. I uninstalled the nVidia drivers via the installer (./installer --uninstall) and then installed the amdgpu package. I can play CS:GO fine via steam, also Diablo II Resurrected via a manual wine installation.

However when trying to start my installation of Path of Exile via Steam using proton 7.0.4 (over 500h with the nVidia card) nothing happens. It just says "Running" for a moment, then the button changes back to "Play".

I tried running it manually via:
STEAM_COMPAT_CLIENT_INSTALL_PATH=~/.local/share/Steam/ STEAM_COMPAT_DATA_PATH=~/.steam/steam/steamapps/compatdata/238960 '~/.steam/steam/steamapps/common/Proton 7.0/proton' run '~/.steam/steam/steamapps/common/Path of Exile/PathOfExileSteam.exe'

but it instantly crashes:

*** stack smashing detected ***: terminated
Aborted (core dumped)

Checking the crash dump shows:

Program terminated with signal SIGABRT, Aborted.
#0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
50\t../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
(gdb) br
Breakpoint 1 at 0x7fdfacbfc00b: file ../sysdeps/unix/sysv/linux/raise.c, line 50.
(gdb) bt
#0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
#1  0x00007fdfacbdb859 in __GI_abort () at abort.c:79
#2  0x00007fdfacc4626e in __libc_message (action=action@entry=do_abort, fmt=fmt@entry=0x7fdfacd7008f "*** %s ***: terminated\
") at ../sysdeps/posix/libc_fatal.c:155
#3  0x00007fdfacce8aba in __GI___fortify_fail (msg=msg@entry=0x7fdfacd70077 "stack smashing detected") at fortify_fail.c:26
#4  0x00007fdfacce8a86 in __stack_chk_fail () at stack_chk_fail.c:24
#5  0x00007fdfacd199b4 in __GI__dl_catch_exception (exception=exception@entry=0x0, operate=operate@entry=0x7fdfacdf22d0 <call_dl_init>, args=args@entry=0x7ffef202c990) at dl-error-skeleton.c:219
#6  0x00007fdfacdf30cf in dl_open_worker (a=a@entry=0x7ffef202cb40) at dl-open.c:758
#7  0x00007fdfacd19928 in __GI__dl_catch_exception (exception=exception@entry=0x7ffef202cb20, operate=operate@entry=0x7fdfacdf2c20 <dl_open_worker>, args=args@entry=0x7ffef202cb40) at dl-error-skeleton.c:208
#8  0x00007fdfacdf260a in _dl_open (file=0x7fdfabefd050 "libGLX_nvidia.so.0", mode=-2147483646, caller_dlopen=<optimized out>, nsid=-2, argc=4, argv=0x7ffef202db88, env=0x7ffef202dbb0) at dl-open.c:837
#9  0x00007fdfacb9134c in dlopen_doit (a=a@entry=0x7ffef202cd60) at dlopen.c:66
[#10](/issue/ValveSoftware/Proton/10) 0x00007fdfacd19928 in __GI__dl_catch_exception (exception=exception@entry=0x7ffef202cd00, operate=operate@entry=0x7fdfacb912f0 <dlopen_doit>, args=args@entry=0x7ffef202cd60) at dl-error-skeleton.c:208
[#11](/issue/ValveSoftware/Proton/11) 0x00007fdfacd199f3 in __GI__dl_catch_error (objname=objname@entry=0x2666c30, errstring=errstring@entry=0x2666c38, mallocedp=mallocedp@entry=0x2666c28, operate=operate@entry=0x7fdfacb912f0 <dlopen_doit>, 
    args=args@entry=0x7ffef202cd60) at dl-error-skeleton.c:227
[#12](/issue/ValveSoftware/Proton/12) 0x00007fdfacb91b59 in _dlerror_run (operate=operate@entry=0x7fdfacb912f0 <dlopen_doit>, args=args@entry=0x7ffef202cd60) at dlerror.c:170
[#13](/issue/ValveSoftware/Proton/13) 0x00007fdfacb913da in __dlopen (file=<optimized out>, mode=<optimized out>) at dlopen.c:87
[#14](/issue/ValveSoftware/Proton/14) 0x00007fdfacdc8ad1 in ?? () from /usr/lib/python3.8/lib-dynload/_ctypes.cpython-38-x86_64-linux-gnu.so
[#15](/issue/ValveSoftware/Proton/15) 0x00000000005f69ca in PyCFunction_Call ()
[#16](/issue/ValveSoftware/Proton/16) 0x00000000005f74f6 in _PyObject_MakeTpCall ()
[#17](/issue/ValveSoftware/Proton/17) 0x0000000000570d55 in _PyEval_EvalFrameDefault ()

So, it looks like it somehow tries to load libGLX_nvidia.so.0 even though the nVidia driver has been removed, and other games run well using the rx6600. Any idea what the problem is and how to solve it?

Kkisak-valve maintainer 2022-12-02 github

Hello @x0r13, please add PROTON_LOG=1 %command% to the game's launch options and attach the generated $HOME/steam-$APPID.log to this issue report as a file. (Proton logs compress well if needed.) Also, please copy your system information from Steam (Steam -> Help -> System Information) and put it in a gist, then include a link to the gist in this issue report.

Xx0r13 2022-12-02 github

content of steam-238960.log

======================
Proton: 1660576899 proton-7.0-4
SteamGameId: 238960
Command: ['/home/xxx/.steam/steam/steamapps/common/Path of Exile/PathOfExileSteam.exe', '--nopatch']
Options: {'forcelgadd'}
depot: 0.20221018.74
pressure-vessel: 0.20221014.0
scripts: v0.20220823.0-0-gcc4e44f
soldier: 0.20221017.1 soldier 0.20221017.1
Kernel: Linux 5.4.0-135-lowlatency [#152](/issue/ValveSoftware/Proton/152)-Ubuntu SMP PREEMPT Wed Nov 23 21:01:58 UTC 2022 x86_64
======================

Nothing more is logged there.

Sys info from steam is here: System info

Xx0r13 2022-12-02 github

Update: After checking my own syslog, I realized that there are a lot of old driver leftovers under /usr/lib/i386-linux-gnu/ and /usr/lib/x86_64-linux-gnu/ - mostly from nv installer 390.116. After manually deleting all those, the game started just fine and runs perfectly well now.

So if anyone else runs into that issue after switching from nVidia to AMD, it might be worth a shot to look for those old driver leftovers.

Kkisak-valve maintainer 2022-12-02 github

Glad to hear you got it working. That issue is being tracked at https://github.com/ValveSoftware/steam-runtime/issues/420.

Kkisak-valve maintainer 2023-04-10 github

Path of Exile (238960) : random POE and steam closure

Issue transferred from https://github.com/ValveSoftware/Proton/issues/6677.
@feydreva posted on 2023-04-10T21:00:59:

Compatibility Report

  • Name of the game with compatibility issues: Path Of Exile
  • Steam AppID of the game: 238960

System Information

I confirm:

  • [X] that I haven't found an existing compatibility report for this game.
  • [X] that I have checked whether there are updates for my system available.

steam-238960.log

Symptoms

When playing game, game randomly crash.
it happened once in Hideout, once in Maps, when entering a zone in the campaign. (it happend after entering my hideout, after few second of play when I took the log)

game closes, and steam shuts down and close properly.

Reproduction

Open stay, play path of exile and wait it happens.

Thank you fr your help

Ffeydreva 2023-04-10 github

after looking around, it seems to be an issue with baloo.
After suspending baloo, not more issue.

TTipcat-98 2023-04-19 github

Hey, while trying to run Path of Exile with Proton 8 my game hangs when in the loading screen when trying to enter a zone/map.
Character select works fine.
Proton 7 and GE-Proton plays the game fine on my system.

EDIT:
It seems the issue is related to loading the act 10 hub "Oriath Docks", as creating a new character successfully loads the tutorial area.
The Act 4 hub - "Overseer's Tower" gives me the same issue.

System Info
CPU: Intel i7 6700
GPU: NVIDIA GeForce RTX 2060
Kernel: 6.2.6

steam-238960.log

Ggarpu 2023-04-19 github

Same for me, except I'm on the Karui shores. I was able to play yesterday morning on Proton 8, so this might be related to the patch yesterday?

steam-238960.log

System info: (wrong soundcard reported, it's an M-Audio delta 1010LT) https://gist.github.com/garpu/be09f7f57f8271200b44cecbbe712978

Eernstp 2023-04-19 github

I could often play for 15 minutes or so with Proton 8 but then the game would hang. No crash, music still playing, but minimal CPU usage and not responding. Reverting to Proton Experimental seems to have fixed it.

TTurmfalke2 2023-04-23 github

Can confirm the crash to desktop when loading in while using Proton 8. Is there a list of releases? So we can test which one exactly introduced the issue?

TTurmfalke2 2023-04-23 github

Can't reproduce the crash right now, now it just freezes? Proton_log attached.

...
19125.336:0134:0160:err:sync:RtlpWaitForCriticalSection section 00000000009400D0 "../src-wine/dlls/ntdll/heap.c: main process heap section" wait timed out in thread 0160, blocked by 0158, retrying (60 sec)
19125.336:0134:015c:err:sync:RtlpWaitForCriticalSection section 00000000009400D0 "../src-wine/dlls/ntdll/heap.c: main process heap section" wait timed out in thread 015c, blocked by 0158, retrying (60 sec)
19125.336:0134:0154:err:sync:RtlpWaitForCriticalSection section 00000000009400D0 "../src-wine/dlls/ntdll/heap.c: main process heap section" wait timed out in thread 0154, blocked by 0158, retrying (60 sec)
19125.336:0134:0138:err:sync:RtlpWaitForCriticalSection section 00000000009400D0 "../src-wine/dlls/ntdll/heap.c: main process heap section" wait timed out in thread 0138, blocked by 0158, retrying (60 sec)

steam-238960.log

TTrueNeutralDesu 2023-04-23 github

Replying to https://github.com/ValveSoftware/Proton/issues/58#issuecomment-1518902681

For me game crashes on loading first location (login and character select screens work) when I use Proton Experimental, with Proton 8 it just hangs.

BBIGFAAT 2023-04-27 github

It seems that the crashes are related of using build in vulkan. Switching to dx12 and so using dxvk fixed all the crashes for me. In the process i lost ~20 max fps but the low 1% and 0.1% got significantly much better.

Running the game on a 2700x with a vega 64, latest zen kernel on arch. Swaping proton versions between 7, 8, ex and ge, or using wayland or x11 didnt matter.

Kkisak-valve maintainer 2023-05-17 github

Path of Exile (238960) crash

Issue transferred from https://github.com/ValveSoftware/Proton/issues/6780.
@Steamvoker posted on 2023-05-17T06:27:13:

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile
  • Steam AppID of the game: 238960

System Information

  • GPU: RTX 4090
  • Driver/LLVM version: nvidia 530.41.03
  • Kernel version: 6.3.2-arch1-1
  • Link to full system information report as Gist:
  • Proton version: 7.0-6, 8.0-2, experimental

I confirm:

  • [:heavy_check_mark: ] that I haven't found an existing compatibility report for this game.
  • [:heavy_check_mark: ] that I have checked whether there are updates for my system available.

steam-238960.log

Symptoms

Game crashes.

Reproduction

  1. Open options.
  2. In the UI tab check the "Hide login email".
AAlexandreBonneau 2023-09-01 github

Path of Exile (Trials of the ancestors) just crashed after loading my third character (for which I need to change the name (haven't logged since 2019), with the following Vulkan error:
2023-09-01_085141_Screenshot
This is using the latest Proton version as of today.
I was unfortunately not able to reproduce the bug so far.

NNicTanghe 2023-09-21 github

I`ve had 0 problems

Kkisak-valve maintainer 2023-11-22 github

Steam Linux | Path of Exile | Proton 8+ | comctl32.dll failed to initialize | Works with Proton 7

Issue transferred from https://github.com/ValveSoftware/Proton/issues/7278.
@freddiehaddad posted on 2023-11-22T14:12:32:

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile
  • Steam AppID of the game: 238960

System Information

  • GPU: RX 7900 XTX
  • Video driver version: Mesa 23.2.1
  • Kernel version: 6.6.2
  • Link to full system information report as Gist:
  • Proton version: 8 and Experimental

I confirm:

  • [X] that I haven't found an existing compatibility report for this game.
  • [X] that I have checked whether there are updates for my system available.
40892.597:0124:0128:err:module:LdrInitializeThunk "COMCTL32.dll" failed to initialize, aborting
40892.597:0124:0128:err:module:LdrInitializeThunk Initializing dlls for L"Z:\\\home\\\\freddiehaddad\\\\.local\\\\share\\\\Steam\\\\steamapps\\\\common\\\\Path of Exile\\\\PathOfExileSteam.exe" failed, status c0000005

https://gist.github.com/freddiehaddad/388bd33e062682a63ff0964ea78ef8e7

Symptoms

Game fails to start using Proton 8 and Proton Experimental, works with Proton 7.

Launch Options:

PROTON_LOG=1 WINEDLLOVERRIDES="version.dll=n,b" %command%

Reproduction

  1. Install Path of Exile via steam
  2. Change launch options for game to:
    PROTON_LOG=1 WINEDLLOVERRIDES="version.dll=n,b" %command%
    
  3. Download: https://github.com/RoseTheFlower/UltrawideIndex/releases/download/pathofexile/Path.of.Exile.Ultrawide.v1.1.zip
    1. Unzip archive to game directory.
    2. unzip ~/downloads/Path.of.Exile.Ultrawide.v1.1.zip -d ~/.local/share/Steam/steamapps/common/Path\ of\\ Exile/
      
  4. Attempt to launch game using Proton Experiment or Proton 8, game will not launch and logs will show the comctl32.dll error.
  5. Switch to Proton 7 and game will launch.
Gghen-arcanum 2023-12-10 github

steam-238960.log
Game launches for me fine on proton experimental but
Since 3.23 i'm experiencing freeze loading for 1 second which makes the game nearly unplayable:
Screenshot from 2023-12-10 09-25-19

AAlexandreBonneau 2023-12-10 github

Path of Exile (Trials of the ancestors) just crashed after loading my third character (for which I need to change the name (haven't logged since 2019), with the following Vulkan error: 2023-09-01_085141_Screenshot This is using the latest Proton version as of today. I was unfortunately not able to reproduce the bug so far.

Affliction works great for now. Except it's a bit laggy in large area (in caves it's very smooth, just not outside).

Fflajann2 2024-08-03 github

PoE failing to launch on my Arch Linux system.
image

              -`                     eltoro@miranda
             .o+`                    --------------
            `ooo/                    OS: Arch Linux x86_64
           `+oooo:                   Host: NH50_70RA
          `+oooooo:                  Kernel: Linux 6.9.9-arch1-1
          -+oooooo+:                 Uptime: 20 hours, 12 mins
        `/:-:++oooo+:                Packages: 2423 (pacman), 162 (nix-user), 370 (nix-default), 1 (flatpak)
       `/++++/+++++++:               Shell: fish 3.7.1
      `/++++++++++++++:              Display (HISENSE): 3840x2160 @ 30 Hz in 52″ [External]
     `/+++ooooooooooooo/`            WM: Hyprland (Wayland)
    ./ooosssso++osssssso+`           Theme: Breeze-Dark [GTK2/3]
   .oossssso-````/ossssss+`          Icons: breeze-dark [GTK2/3/4]
  -osssssso.      :ssssssso.         Font: Noto Sans (10pt) [GTK2/3/4]
 :osssssss/        osssso+++.        Cursor: Oxygen_Blue (24px)
/ossssssss/        +ssssooo/-        Terminal: kitty 0.35.2

/ossssso+/:- -:/+osssso+- Terminal Font: NotoSansMono-Regular (9pt) +sso+:- .-/+oso: CPU: Intel(R) Core(TM) i5-9300H (8) @ 4.10 GHz
++:. -/+/ GPU: Intel UHD Graphics 630 @ 1.05 GHz [Integrated]
. / Memory: 17.82 GiB / 31.19 GiB (57%)
Swap: Disabled
Disk (/): 1022.79 GiB / 1.82 TiB (55%) - btrfs
Disk (/miloba): 128.00 KiB / 2.17 TiB (0%) - zfs
Local IP (br0): 192.168.100.50/24
Battery: 100% [AC Connected]
Locale: en_US.UTF-8
Any ideas?

Kkisak-valve maintainer 2025-10-03 github

Games crash consistently on launch (since latest update)

Issue transferred from https://github.com/ValveSoftware/steam-for-linux/issues/12360.
@rstecca posted on 2025-10-03T17:27:43:

Your system information

  • Steam client version (build number or date): 1759461205
  • Distribution (e.g. Ubuntu): TuxedoOS (Ubuntu)
  • Opted into Steam client beta?: Not sure
  • Have you checked for system updates?: Yes
  • Steam Logs:

logs.tar.gz

  • GPU: Nvidia 4070

Please describe your issue in as much detail as possible:

Describe what you expected should happen and what did happen. Please link any large code pastes as a Github Gist

Games crash at start with Vulkan error. I currently only have Path of Exile (not PoE 2) installed. Before today's update it was hit and miss and once every ~5 the game would start. Now it crashes at start 100% of the times with the following error reported in steamwebhelper.log:

[0405/180622.128103:ERROR:angle_platform_impl.cc(43)] Display.cpp:1021 (initialize): ANGLE Display::initialize error 0: Internal Vulkan error (-3): Initialization of an object could not be completed for implementation-specific reasons, in ../../third_party/angle/src/libANGLE/renderer/vulkan/RendererVk.cpp, initialize:1404.
ERR: Display.cpp:1021 (initialize): ANGLE Display::initialize error 0: Internal Vulkan error (-3): Initialization of an object could not be completed for implementation-specific reasons, in ../../third_party/angle/src/libANGLE/renderer/vulkan/RendererVk.cpp, initialize:1404.
[0405/180622.128184:ERROR:gl_display.cc(508)] EGL Driver message (Critical) eglInitialize: Internal Vulkan error (-3): Initialization of an object could not be completed for implementation-specific reasons, in ../../third_party/angle/src/libANGLE/renderer/vulkan/RendererVk.cpp, initialize:1404.
[0405/180622.128203:ERROR:gl_display.cc(932)] eglInitialize SwANGLE failed with error EGL_NOT_INITIALIZED
[0405/180622.128223:ERROR:gl_ozone_egl.cc(23)] GLDisplayEGL::Initialize failed.
[0405/180622.128993:ERROR:viz_main_impl.cc(186)] Exiting GPU process due to errors during initialization

If related, I have tried changing Proton to Hotfix. It's set to "Experimental" by default I think.

Steps for reproducing this issue:

  1. Launch Path of Exile, likely other games that use Vulkan.
  2. Hear the intro audio for a second, with no image, then audio stops and a black screen remains.
  3. Kill the process (easy to do with htop, filtering exile and hitting F9).
  4. Repeat from step 1.
Kkisak-valve maintainer 2025-10-03 github

Hello @rstecca, there shouldn't be a default like you're referring to. You should have a globally selected compatibility tool in Steam's settings which is something you control.

Can you clarify which update you're referring to? Also, please copy the contents of Steam Runtime Diagnostics from Steam (Steam -> Help -> Steam Runtime Diagnostics) and put it in a gist, then include a link to the gist in this issue report.

Rrstecca 2025-10-04 github

@kisak-valve Thank you for your reply. Here's the gist with Steam Diagnostics.
Side note, it might be relevant that when I run Path Of Exile I never have second screen attached like I did when I run the Disgnostic.
Meanwhile, is going back to Proton 7 still a viable workaround?

Bbraiam 2025-12-01 github

Path of Exile takes too much time in the "Cache cleanup in progress. This might take a while." screen. It took 30 minutes, to then give up doing whatever it was doing:

2025/11/30 16:11:20 1308525464 665e1f88 [INFO Client 292] [STARTUP] Tencent in 0.021475 seconds
2025/11/30 16:11:20 1308525528 665e1faf [INFO Client 292] [STARTUP] Loading Start
2025/11/30 16:11:20 1308525610 665e1f88 [INFO Client 292] [STARTUP] Loading in 0.076705 seconds
2025/11/30 16:11:20 1308525622 665e1faf [INFO Client 292] [STARTUP] DebugGUI Start
2025/11/30 16:11:20 1308525671 665e1f88 [INFO Client 292] [STARTUP] DebugGUI in 0.044083 seconds
2025/11/30 16:11:26 1308531468 e0345484 [INFO Client 292] [SCENE] Set Source [(unknown)]
2025/11/30 16:11:26 1308531503 2e06ba62 [DEBUG Client 292] [SCENE] Height Map Texture: 800 x 800
2025/11/30 16:41:49 1310354701 13cb2f92 [WARN Client 292] Failed to create effect graph node (ID: 1428025895). Node type does not exist
2025/11/30 16:41:49 1310354701 5c7c661 [WARN Client 292] Failed to create effect graph node "VertexFlipBookOffset" in graph "Metadata/Effects/Graphs/General/FlipbookOld.fxgraph"
2025/11/30 16:41:50 1310355182 ddab218d [INFO Client 292] [DXC] Successfully loaded "dxcompiler.dll"

Changing between stable and experimental proton didn't help. Once that happened, the game opens faster, but the long delay shouldn't be happening anyways. Verified between attempts.

Ddsf3449 2026-03-11 github

A number of people, myself included, are experiencing frequent crashes in the 3.28 Mirage update related to text rendering in the client. For example, I had a friend who named their character @ฺxฺ (@U+0E3AxU+0E3A, or @ U+0E3A x U+0E3A), and every time I open the social tab, my entire client would crash.

You can simply load into the game and paste @ฺxฺ into the chat box, and you'll get the crash. Here's a video of me loading into the game and simply pasting that text into the chat box and the client immediately crashes.
https://youtu.be/MtqdBcW2OMg

The PoE client.txt doesn't have any info about the crash, and the crash with this text does not happen on windows, so I assume this to be a proton issue?

Here's the proton logfile:
steam-238960.log

I'm on CachyOS, Kernel: Linux 6.19.6-2-cachyos, using proton-cachyos-10.0-20260227, but I've also tried Proton Experimental, Proton Hotfix, and Proton 10.0-4, all having the same issue. Happens whether you are using Vulkan or DX12 renderer in game.

Switching to Wayland via PROTON_ENABLE_WAYLAND=1 doesn't fix the crash either.

Edit:
Here's some forum posts of people describing the same issue:

BBlack-Mage01 2026-03-11 github

With protontricks installed, i ran protontricks 238960 usp10 corefonts tahoma into a terminal.
I also added WINEDLLOVERRIDES="usp10=n,b" %command% into my launch options in steam.

before, having aaฺ anywhere in my chat or friends group (i am lucky to not have someone in my friends group with that character) would crash the program. After i performed these two steps I can paste aฺ into local chat to confirm that i am stable.

Edit: I am on CachyOS with the standard linux-cachyos kernel

Ddsf3449 2026-03-11 github

Looks like an issue on WINE's end.

Thread 1 "Main" received signal SIGSEGV, Segmentation fault.
0x00006fffff55be67 in GPOS_apply_MarkToMark (analysis=0x0, analysis=0x0, glyph_count=1660676244, pt=<synthetic pointer>, ppem=<optimized out>, glyph_index=1660676006, glyphs=0x68ea71f4, look=0x683d9858)
    at ../src-wine/dlls/gdi32/uniscribe/opentype.c:2096
⚠ warning: Source file is more recent than executable.
2096                    mark2_index = GSUB_is_glyph_covered((const BYTE*)mmpf1+offset, glyphs[glyph_index - write_dir]);
(gdb) c
Continuing.
[Detaching after fork from child process 603269]

In order to understand the issue, we need to examine three functions within WINE's gdi32/uniscribe/opentype.c:

  • GPOS_apply_MarkToBase
  • GPOS_apply_MarkToLigature
  • GPOS_apply_MarkToMark

All three of these functions determine how to attach "marks" to other characters in languages which have them. Before being given to these functions, another function ScriptItemize (usp10.c) splits the string into "runs" based on the script. In my example, the string would be split into 2 runs: one run for the latin characters in the string x and one run for the thai characters .

The issue is that all 3 of these functions assume that, if given a mark, there will always be another character to attach to, whether it's a base character, ligature, or another mark.

Take a look at the following code being executed in GPOS_apply_MarkToMark from the exception:

...
mark2_index = GSUB_is_glyph_covered((const BYTE*)mmpf1+offset, glyphs[glyph_index - write_dir]);
...

In the case of my problematic string, there are ONLY thai marks, no additional thai characters. Therefore, the "run" for the thai characters will include only thai marks. In the case of LTR languages, write_dir is a positive 1. Therefore, the glyph array position to be accessed is calculated by subtracting the write direction (a signed integer 1) from the mark's index (an unsigned integer 0) resulting in an integer underflow result of 4294967295. Then, glyphs[4294967295] is evaluated, causing an exception.

Each of the 3 GPOS_apply_MarkTo* have similar assumptions that the mark character will never be the only or first character in the glyph array.

This can be further proven by pasting something like กฺ (U+0E01U+0E3A) into the chat box which does NOT crash the game, since there is a valid character to attach to.

I did patch this by adding simple bounds checking and returning early if accessing the glyph array will result in a -1, but this causes the marks to not render at all, so probably not the best solution to this issue.

Ddsf3449 2026-03-11 github

And I can confirm that @Black-Mage01's solution works perfectly, since installing usp10 will use Microsoft's implementation of uniscribe, bypassing the bugged code in wine's version of uniscribe. Although, for me, the additional launch option was not necessary and just running protontricks 238960 usp10 corefonts tahoma was sufficient.

Bbraiam 2026-03-11 github

@dsf3449 do you have an issue on upstream wine opened to keep track of a definitive fix that avoids winetricks?

BBlack-Mage01 2026-03-11 github

And I can confirm that @Black-Mage01's solution works perfectly, since installing usp10 will use Microsoft's implementation of uniscribe, bypassing the bugged code in wine's version of uniscribe. Although, for me, the additional launch option was not necessary and just running protontricks 238960 usp10 corefonts tahoma was sufficient.

it's good to know that this is all that is necessary, though the individual who gave me the fix included that as a step, to be clear. this isn't my workaround. but i will also try this - removing the launch option. and if i do not edit this message below this line, i am successfully playing after pasting the problem character once again to test.

VVitorCBSB 2026-04-21 github

I have filed a bug report on WineHQ's Bugzilla about this particular font issue, hopefully it can get fixed soon.

Sstianlow 2026-05-10 github

Successful test for handling pasting characters to notepad for GE-Proton10-32 which failed prior to the patch:

https://bugs.winehq.org/show_bug.cgi?id=59680#c17
https://gitlab.winehq.org/wine/wine/-/merge_requests/10859.patch

Thanks for bug report @VitorCBSB . Hopefully its fixed so Proton can pull from upstream wine.

RRaikiri 2026-07-28 github

Compatibility Report

  • Name of the game with compatibility issues: Path of Exile 1
  • Steam AppID of the game: 238960

System Information

  • GPU: GTX4060
  • Video driver version: 595.xx
  • Kernel version: 7.0.0
  • Link to full system information report as Gist:
  • Proton version: Experimental (tried multiple other versions, including 10.0)

I confirm:

  • [x] that I haven't found an existing compatibility report for this game.
  • [x] that I have checked whether there are updates for my system available.

Symptoms

After 3.29 update certain assets cause the game to infinitely wait on a d3d12 call WaitForFence(). Essentially a frame never finishes rendering. Conveniently, the issue reproes on the game login screen: you don't need to even log in or do anything, just launch the game and change the renderer to d3d12, it should freeze immediately.

Reproduction

  1. Download the game on steam
  2. Launch the game
  3. In graphics settings, change the GAPI to d3d12
  4. Observe the freeze

After internal testing we found the exact change that causes the freeze

void ComputeDynamicLighting( in SurfaceData surface_data, inout EmissionData emission_data )
{
	float4 res_color = float4(0.0f, 0.0f, 0.0f, 0.0f);

	uint4 indices = (uint4)dynamic_light_indices;
	LightData light_data;
	
	//this line here: changing this to [unroll] makes the problem not repro
	[loop]
	for(uint idx = 0; idx < 4; idx++)
	{
		uint light_type = GetLightType(indices[idx]);
		ComputeDynamicLightParams(
			surface_data.world_pos,
			GetLightPosition(indices[idx]),
			GetLightDirection(indices[idx]),
			GetLightColor(indices[idx]),
			light_type,
			light_data);

		float shadow = 1.0f;
		
		if(GetLightShadowEnabled(indices[idx]) > 0.0f)
		{
			#if !defined(SUBSURFACE_SHADOWS)
				shadow = ShadowMap( 
					float4(surface_data.world_pos, 1.0f), 
					GetLightMatrix(indices[idx]), 
					GetLightShadowScale(indices[idx]), 
					GetLightShadowAtlasOffsetScale(indices[idx]), 
					tex_shadow_map_atlas, 
					light_type);
			#else
				shadow = IntegrateShadowMap( 
					float4(surface_data.world_pos, 1.0f),
					float4(surface_data.subsurface_world_pos, 1.0f),
					surface_data.subsurface_seed, 
					GetLightMatrix(indices[idx]), 
					GetLightShadowScale(indices[idx]), 
					GetLightShadowAtlasOffsetScale(indices[idx]), 
					tex_shadow_map_atlas, 
					light_type == 0,
					0.5f);
			#endif
		}

		#if defined(USE_BENT_NORMAL_CONTACT_SHADOWS)
			shadow *= ComputeBentNormalShadow(-light_data.direction, surface_data.world_bent_normal, surface_data.bent_normal_shadow_sharpness);
		#endif

		light_data.intensity *= shadow;
		if (length(light_data.intensity) > 0.0f)
			ComputeLight( light_data, surface_data, emission_data );
	}
}

The problem has something to do with the [loop] there: if it's [unroll]ed, it does not freeze, if it's a [loop] , it does, even though the number of iterations there is constant 4. If there is no specifier, it behaves the same way as with [loop], so it freezes. Note that we specifically want to avoid having an [unroll] there, because looping produces a much smaller shader binary for us that takes less time to compile.

Ddoitsujin 2026-07-28 github

@Raikiri Does this get compiled as shader model 5 or 6?

Probably useful to attach the compiled binary somewhere, it's not immediately obvious from the code why having a simple loop like this would cause issues, especially since drivers will probably try to unroll this anyway.

OOursCodeur 2026-07-28 github

@doitsujin attached :

5fe69962b7c0f5c5.dxil: game-provided SM6 pixel shader, 5fe69962b7c0f5c5.spv vkd3d-proton translation produced during the failing run, and checksums for both binaries just in case. The captured DXIL contains

ComputeDynamicLighting
NodeFN_DynamicLighting_1

, so this should be the right ones.

poe1-dx12-xid109-sm6-shader.zip

RRaikiri 2026-07-29 github

@Raikiri Does this get compiled as shader model 5 or 6?

Probably useful to attach the compiled binary somewhere, it's not immediately obvious from the code why having a simple loop like this would cause issues, especially since drivers will probably try to unroll this anyway.

I should probably bring some more context: the issue does not happen for all shaders that include that exact snippet of problematic code (function ComputeDynamicLighting). In fact, almost all assets in the game use it, but only some very specific scenes result in a freeze while doing so. "Fortunately", our PoE1 login screen is one of them. However, if we bypass the login screen and get straight into the game, most of the game renders just fine without freezing.

We found the minimal subset of assets that recreate the issue (by progressively removing objects from the login screen), and we managed to reduce it to 2 very basic assets: on basic particle system and one spot light. However, when the system is reduced to just these 2 assets, it does not freeze immediately and does not freeze every time we launch it: sometimes we need to move the assets around, wait, move the camera and then it freezes, sometimes it just does not. Note that particle behavior is driven by a compute shader that updates their positions and not running that shader makes the issue not repro, so it somehow requires both to be present in order for the problem to happen.

If needed, we can send you the minimal setup that renders only the problematic assets and nothing else, but separating that from the rest of our game infrastructure is going to be non-trivial, so it'll be a ~100GB upload if you're ok with that.

especially since drivers will probably try to unroll this anyway.
At least on windows, we looked into nvidia's SASS binaries and the pipeline compiler certainly does not unroll that loop. Presumably due to register pressure.

Note that we plan to deploy the same change on PoE2, which notably does not freeze on its loading screen but also freezes in some of the game areas, including the first town. Fortunately, we found a workaround for now that allows us to bypass the issue on our side:

	[loop]
	for(uint idx = 0; idx < 4; idx++) //this freezes
	{
		//...
	}

changing this to a loop over a uniform value that's always equal to 4 fixes the issue:

	[loop]
	for(uint idx = 0; idx < uniform_equal_to_4; idx++) //this does not freeze
	{
		//...
	}

We can't deploy this workaround onto PoE1 right now, because it would require a full shader rebuild/redownload, but we can at least deploy this onto PoE2 along with the change that will make the loop dynamic.

Another important point of data is that the issue specifically affects NVidia GPU's and does not happen on AMD's. We realize there's a good chance it can be a driver bug on their side, and we will contact them, but the chance of them doing anything about a linux-specific issue is vanishingly low.

Proton versions

Launch options

Launch lines

Upstream links

DLLs