2019-08-28 17:35:54 +00:00
|
|
|
#ifndef __TRACYVIEWDATA_HPP__
|
|
|
|
#define __TRACYVIEWDATA_HPP__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace tracy
|
|
|
|
{
|
|
|
|
|
|
|
|
struct ViewData
|
|
|
|
{
|
|
|
|
int64_t zvStart = 0;
|
|
|
|
int64_t zvEnd = 0;
|
2019-08-28 17:49:27 +00:00
|
|
|
int32_t zvHeight = 0;
|
|
|
|
int32_t zvScroll = 0;
|
2019-08-28 17:52:36 +00:00
|
|
|
int32_t frameScale = 0;
|
|
|
|
int32_t frameStart = 0;
|
2019-08-28 19:35:08 +00:00
|
|
|
|
|
|
|
uint8_t drawGpuZones = true;
|
|
|
|
uint8_t drawZones = true;
|
|
|
|
uint8_t drawLocks = true;
|
|
|
|
uint8_t drawPlots = true;
|
|
|
|
uint8_t onlyContendedLocks = true;
|
|
|
|
uint8_t drawEmptyLabels = false;
|
|
|
|
uint8_t drawContextSwitches = true;
|
2019-09-30 21:37:36 +00:00
|
|
|
uint8_t darkenContextSwitches = true;
|
2019-08-28 19:35:08 +00:00
|
|
|
uint8_t drawCpuData = true;
|
2019-09-08 12:33:30 +00:00
|
|
|
uint8_t dynamicColors = true;
|
2019-08-28 17:35:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|