You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a follow-up to #335
On Metal, we are able to comply with this use of swapchains. However, on D3D12, we can't acquire more than one frame at a time. Does Dota2 have an option to only acquire one frame at a time?
The text was updated successfully, but these errors were encountered:
You can try +r_wait_on_present 1. I'm not certain if it will keep it from acquiring multiple images. It will force the main thread to wait on the renderthread for outstanding presents to complete. Seems like something you'll need to workaround on your side though to not tank perf?
Thank you for the answer! I was able to work around this in D3D12 backend.
. Seems like something you'll need to workaround on your side though to not tank perf?
Using "+r_wait_on_present 1" would definitely be bad, and that's not what I was requesting. That would stop GPU processing multiple frames in flight, while I was requesting to stop CPU recording multiple frames at once. Anyhow, this is now resolved :)
This is a follow-up to #335
On Metal, we are able to comply with this use of swapchains. However, on D3D12, we can't acquire more than one frame at a time. Does Dota2 have an option to only acquire one frame at a time?
The text was updated successfully, but these errors were encountered: