1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add zstd compression to FileWrite.

This commit is contained in:
Bartosz Taudul
2020-02-08 15:43:01 +01:00
parent 64cfad317d
commit 145514687c
2 changed files with 33 additions and 7 deletions
+2 -1
View File
@@ -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 )
{