been doing some heavy investigating, was having random crashes when zoning, sometimes just randomly while playing and I’ve even had full system reboots. I kept digging into windows debugs and found that most of the issues seem to have been;
video_scheduler_internal_error (119)
after digging deeper in to this error, this is a windows feature called MPO (Multi-Plane Overlay) Its supposed to have some optimizations when running in windows borderless window etc but the implementation is bad. it effectively creates multiple buffers when playing multiscreen games like a multimonitor race sim setup for example. Atleast from what i’ve read, if you run the game on one monitor and say browser in another. you should be able to disable MPO with no issues. this is done with a simple registery entry. You can download a file from both the AMD and Nvidia site with a simple search but if you feel so inclined, you can add it yourself
you’d rather do it by hand the key is HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Dwm
, create DWORD OverlayTestMode
with value 00000005
.