mirror of
https://github.com/wolfpld/tracy
synced 2026-01-19 04:52:09 +00:00
This value is not used for anything, it was just a number displayed in the UI without much meaning to anyone. Operations on the queue during early init may not work correctly, stopping some programs from running past the calibration loop.
15 lines
170 B
C++
15 lines
170 B
C++
#ifndef __TRACYVERSION_HPP__
|
|
#define __TRACYVERSION_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
namespace Version
|
|
{
|
|
enum { Major = 0 };
|
|
enum { Minor = 12 };
|
|
enum { Patch = 3 };
|
|
}
|
|
}
|
|
|
|
#endif
|