mirror of https://github.com/wolfpld/tracy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
322 B
C++
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
|