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
AgeCommit message (Collapse)Author
2022-07-17Move all client headers and sources to public/ directory.Bartosz Taudul
2022-04-26Add missing includes.Bartosz Taudul
2020-02-08Add zstd compression to FileWrite.Bartosz Taudul
2019-08-19Move FileVersion() to TracyFileHeader.hpp.Bartosz Taudul
2018-04-21Try to not crash when opening invalid files.Bartosz Taudul
Tracy will now perform a number of checks when trying to read a dump file: 1. The file must have at least 4 bytes of data. 2. There should be a 4 byte header to indicate the file was saved by tracy. This is a breaking change in file format. 3. Old header-less files are still supported, but there's a new check for data validity. The first 4 bytes of file (as an uint32) must be less or equal to max LZ4 data packet size. This requires the first two bytes to be 00 00 or 00 01, which should catch most invalid files.