mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
[d3d11] Also fix reset counter memory order for deferred context queries
This commit is contained in:
parent
e787077554
commit
73a5b33375
@ -55,7 +55,7 @@ namespace dxvk {
|
|||||||
|
|
||||||
void DoDeferredEnd() {
|
void DoDeferredEnd() {
|
||||||
m_state = D3D11_VK_QUERY_ENDED;
|
m_state = D3D11_VK_QUERY_ENDED;
|
||||||
m_resetCtr += 1;
|
m_resetCtr.fetch_add(1, std::memory_order_acquire);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsScoped() const {
|
bool IsScoped() const {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user