1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Ignore memory free faults if running on apple.

There's a case in MoltenVK initialization where overloading operator new
and operator delete works for std::string destruction, but not
construction.
This commit is contained in:
Bartosz Taudul
2019-06-13 14:15:17 +02:00
parent ab4e99229d
commit 31a4a45b14
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -498,6 +498,7 @@ private:
char* m_buffer;
int m_bufferOffset;
bool m_onDemand;
bool m_ignoreMemFreeFaults;
GpuCtxData* m_gpuCtxMap[256];
flat_hash_map<uint64_t, StringLocation, nohash<uint64_t>> m_pendingCustomStrings;