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

Memory allocations tracker.

This commit is contained in:
Bartosz Taudul
2018-03-31 21:56:05 +02:00
parent 7a35e8facc
commit 991fc6bd95
4 changed files with 55 additions and 0 deletions
+3
View File
@@ -57,6 +57,9 @@
#define TracyMessage( txt, size ) tracy::Profiler::Message( txt, size );
#define TracyMessageL( txt ) tracy::Profiler::Message( txt );
#define TracyAlloc( ptr, size ) tracy::Profiler::MemAlloc( ptr, size );
#define TracyFree( ptr ) tracy::Profiler::MemFree( ptr );
#endif
#endif