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

Reduce frame images frame index to 32 bit.

This commit is contained in:
Bartosz Taudul
2020-07-26 13:23:44 +02:00
parent ab468d8c57
commit b7af9a0860
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ namespace tracy
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
enum : uint32_t { ProtocolVersion = 38 };
enum : uint32_t { ProtocolVersion = 39 };
enum : uint32_t { BroadcastVersion = 1 };
using lz4sz_t = uint32_t;