1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-01 16:24:12 +01:00

[d3d11] Also fix reset counter memory order for deferred context queries

This commit is contained in:
Philip Rebohle 2019-11-15 19:48:41 +01:00
parent e787077554
commit 73a5b33375
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -55,7 +55,7 @@ namespace dxvk {
void DoDeferredEnd() {
m_state = D3D11_VK_QUERY_ENDED;
m_resetCtr += 1;
m_resetCtr.fetch_add(1, std::memory_order_acquire);
}
bool IsScoped() const {