1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 20:52:10 +01:00

[util] Add GetPrivateRefCount helper

This commit is contained in:
Joshua Ashton 2019-05-01 20:04:07 +01:00 committed by Philip Rebohle
parent 9280818a57
commit 511ed27733

View File

@ -67,6 +67,10 @@ namespace dxvk {
delete this;
}
}
ULONG GetPrivateRefCount() {
return m_refPrivate.load();
}
private: