mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
f0b957ec56
ZoneEvent is now 27 bytes. Memory usage reduction on selected traces (sizes in MB): big 9224 -> 9011 (97%) chicken 2044 -> 2027 (99%) drl-l-b 1443 -> 1383 (95%) long 5327 -> 5253 (98%) q3bsp-mt 5400 -> 5304 (98%) selfprofile 1403 -> 1382 (98%)
15 lines
169 B
C++
15 lines
169 B
C++
#ifndef __TRACYVERSION_HPP__
|
|
#define __TRACYVERSION_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
namespace Version
|
|
{
|
|
enum { Major = 0 };
|
|
enum { Minor = 5 };
|
|
enum { Patch = 9 };
|
|
}
|
|
}
|
|
|
|
#endif
|