Files
Towards/external/tracy/server/TracyFileMeta.hpp
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

19 lines
350 B
C++

#ifndef __TRACYFILEMETA_HPP__
#define __TRACYFILEMETA_HPP__
#include <algorithm>
#include <stddef.h>
#include <zstd.h>
#include "../public/common/tracy_lz4.hpp"
namespace tracy
{
constexpr size_t FileBufSize = 64 * 1024;
constexpr size_t FileBoundSize = std::max( LZ4_COMPRESSBOUND( FileBufSize ), ZSTD_COMPRESSBOUND( FileBufSize ) );
}
#endif