Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2021-04-01 00:43:52 +0300
committerGitHub <noreply@github.com>2021-04-01 00:43:52 +0300
commite35d02186d00eff26ec6c698331a0767a28a51b0 (patch)
tree4a31c9e7c36bb05fcad987de25b59176bf6457f9
parent8ddf26fff29cfb1975d404fd97b38dd683c39110 (diff)
parentb7e1fec37f168ca0d7b3ad243b7d48312a66b7eb (diff)
Merge pull request #191 from benvanik/patch-2
Add missing declarations for the _named variants of memory alloc/free.
-rw-r--r--TracyC.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/TracyC.h b/TracyC.h
index 396d6ebe..3e0c3f69 100644
--- a/TracyC.h
+++ b/TracyC.h
@@ -139,6 +139,10 @@ TRACY_API void ___tracy_emit_memory_alloc( const void* ptr, size_t size, int sec
TRACY_API void ___tracy_emit_memory_alloc_callstack( const void* ptr, size_t size, int depth, int secure );
TRACY_API void ___tracy_emit_memory_free( const void* ptr, int secure );
TRACY_API void ___tracy_emit_memory_free_callstack( const void* ptr, int depth, int secure );
+TRACY_API void ___tracy_emit_memory_alloc_named( const void* ptr, size_t size, int secure, const char* name );
+TRACY_API void ___tracy_emit_memory_alloc_callstack_named( const void* ptr, size_t size, int depth, int secure, const char* name );
+TRACY_API void ___tracy_emit_memory_free_named( const void* ptr, int secure, const char* name );
+TRACY_API void ___tracy_emit_memory_free_callstack_named( const void* ptr, int depth, int secure, const char* name );
TRACY_API void ___tracy_emit_message( const char* txt, size_t size, int callstack );
TRACY_API void ___tracy_emit_messageL( const char* txt, int callstack );