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>2019-07-27 00:05:24 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-07-27 00:15:12 +0300
commit27965e86900d163d10f3b41da6c22eb28fa46b92 (patch)
tree14f984c9259272b65b14e81d22f322fbd36a9d43 /server/TracyView.hpp
parent34cc7183d0cad317d9a80ce1d85d3645cf2af84d (diff)
Add user data storage handler.
Diffstat (limited to 'server/TracyView.hpp')
-rw-r--r--server/TracyView.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/TracyView.hpp b/server/TracyView.hpp
index 5da9eff1..09370d22 100644
--- a/server/TracyView.hpp
+++ b/server/TracyView.hpp
@@ -12,6 +12,7 @@
#include "TracyBuzzAnim.hpp"
#include "TracyDecayValue.hpp"
#include "TracyTexture.hpp"
+#include "TracyUserData.hpp"
#include "TracyVector.hpp"
#include "TracyWorker.hpp"
#include "tracy_flat_hash_map.hpp"
@@ -343,6 +344,8 @@ private:
void* m_frameTexture = nullptr;
const void* m_frameTexturePtr = nullptr;
+ UserData m_userData;
+
struct FindZone {
enum : uint64_t { Unselected = std::numeric_limits<uint64_t>::max() - 1 };
enum class GroupBy : int { Thread, UserText, Callstack };