mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
22 lines
289 B
C++
22 lines
289 B
C++
#ifndef __TRACYVIEWDATA_HPP__
|
|
#define __TRACYVIEWDATA_HPP__
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct ViewData
|
|
{
|
|
int64_t zvStart = 0;
|
|
int64_t zvEnd = 0;
|
|
int32_t zvHeight = 0;
|
|
int32_t zvScroll = 0;
|
|
int32_t frameScale = 0;
|
|
int32_t frameStart = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|