The open source OpenXR runtime
1#ifndef __TRACYSTACKFRAMES_HPP__
2#define __TRACYSTACKFRAMES_HPP__
3
4#include <stddef.h>
5
6namespace tracy
7{
8
9struct StringMatch
10{
11 const char* str;
12 size_t len;
13};
14
15extern const char** s_tracyStackFrames;
16extern const StringMatch* s_tracySkipSubframes;
17
18static constexpr int s_tracySkipSubframesMinLen = 7;
19
20}
21
22#endif