mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-05 01:24:14 +01:00
[util] Filter out internal private ref on object destruction
Closes #3531 for real this time.
This commit is contained in:
parent
a7278cdab1
commit
987df8a487
@ -73,7 +73,7 @@ namespace dxvk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool HasLiveReferences() const {
|
bool HasLiveReferences() const {
|
||||||
return bool(m_refCount.load() | m_refPrivate.load());
|
return bool(m_refCount.load() | (m_refPrivate.load() & 0x7FFFFFFF));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
Loading…
Reference in New Issue
Block a user