tracy/server/TracyViewData.hpp

52 lines
950 B
C++
Raw Normal View History

#ifndef __TRACYVIEWDATA_HPP__
#define __TRACYVIEWDATA_HPP__
#include <stdint.h>
2020-04-18 12:25:04 +00:00
#include <regex>
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;
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-10-15 19:37:16 +00:00
uint8_t drawCpuUsageGraph = true;
2020-02-22 16:35:29 +00:00
uint8_t drawSamples = true;
uint8_t dynamicColors = 1;
uint8_t ghostZones = true;
};
struct Annotation
{
std::string text;
int64_t start;
int64_t end;
uint32_t color;
};
2020-04-18 12:25:04 +00:00
struct SourceRegex
{
std::string pattern;
std::string target;
std::regex regex;
};
}
#endif