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>2020-02-08 17:43:01 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-02-08 18:14:43 +0300
commit145514687c8b4abfc73c7d528610ad3c48fcc54a (patch)
tree4fcbfcbe2d6591bdc523dc72469ac58268e4b869 /server/TracyFileHeader.hpp
parent64cfad317d397381110239e4038c24acd681af47 (diff)
Add zstd compression to FileWrite.
Diffstat (limited to 'server/TracyFileHeader.hpp')
-rw-r--r--server/TracyFileHeader.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/TracyFileHeader.hpp b/server/TracyFileHeader.hpp
index b49e0029..c5971019 100644
--- a/server/TracyFileHeader.hpp
+++ b/server/TracyFileHeader.hpp
@@ -6,7 +6,8 @@
namespace tracy
{
-static const char Lz4Header[4] = { 't', 'l', 'Z', 4 };
+static const char Lz4Header[4] = { 't', 'l', 'Z', 4 };
+static const char ZstdHeader[4] = { 't', 'Z', 's', 't' };
static constexpr tracy_force_inline int FileVersion( uint8_t h5, uint8_t h6, uint8_t h7 )
{