mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
18 lines
181 B
C++
18 lines
181 B
C++
#ifndef __TRACYVIEWDATA_HPP__
|
|
#define __TRACYVIEWDATA_HPP__
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct ViewData
|
|
{
|
|
int64_t zvStart = 0;
|
|
int64_t zvEnd = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|