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:
-rw-r--r--client/TracyProfiler.cpp1
-rw-r--r--common/TracyProtocol.hpp3
2 files changed, 3 insertions, 1 deletions
diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp
index 6f6cd167..c1d33d1c 100644
--- a/client/TracyProfiler.cpp
+++ b/client/TracyProfiler.cpp
@@ -1540,6 +1540,7 @@ void Profiler::Worker()
#endif
#ifdef _WIN32
flags |= WelcomeFlag::CombineSamples;
+ flags |= WelcomeFlag::IdentifySamples;
#endif
#if defined __i386 || defined _M_IX86
diff --git a/common/TracyProtocol.hpp b/common/TracyProtocol.hpp
index e7ab86ad..1cd46346 100644
--- a/common/TracyProtocol.hpp
+++ b/common/TracyProtocol.hpp
@@ -9,7 +9,7 @@ namespace tracy
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
-enum : uint32_t { ProtocolVersion = 53 };
+enum : uint32_t { ProtocolVersion = 54 };
enum : uint16_t { BroadcastVersion = 2 };
using lz4sz_t = uint32_t;
@@ -86,6 +86,7 @@ struct WelcomeFlag
IsApple = 1 << 1,
CodeTransfer = 1 << 2,
CombineSamples = 1 << 3,
+ IdentifySamples = 1 << 4,
};
};