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-08-28 20:35:54 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-28 20:35:54 +0300
commit949c9cb1218216e521a2a336d04b739f13769cec (patch)
tree6016c94ff70ec7acd3c2bafd0f40f79a4b058c73 /server/TracyViewData.hpp
parent38bfae13dda2a6c9466beb15328ac2b3bd3f26bc (diff)
Move some view data to a separate structure.
Diffstat (limited to 'server/TracyViewData.hpp')
-rw-r--r--server/TracyViewData.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/server/TracyViewData.hpp b/server/TracyViewData.hpp
new file mode 100644
index 00000000..e1471dfd
--- /dev/null
+++ b/server/TracyViewData.hpp
@@ -0,0 +1,17 @@
+#ifndef __TRACYVIEWDATA_HPP__
+#define __TRACYVIEWDATA_HPP__
+
+#include <stdint.h>
+
+namespace tracy
+{
+
+struct ViewData
+{
+ int64_t zvStart = 0;
+ int64_t zvEnd = 0;
+};
+
+}
+
+#endif