1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 20:33:52 +00:00
tracy/common/TracyStackFrames.hpp
2021-06-09 02:14:01 +02:00

23 lines
322 B
C++

#ifndef __TRACYSTACKFRAMES_HPP__
#define __TRACYSTACKFRAMES_HPP__
#include <stddef.h>
namespace tracy
{
struct StringMatch
{
const char* str;
size_t len;
};
extern const char** s_tracyStackFrames;
extern const StringMatch* s_tracySkipSubframes;
static constexpr int s_tracySkipSubframesMinLen = 7;
}
#endif