mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
23 lines
323 B
C++
23 lines
323 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 = 19;
|
|
|
|
}
|
|
|
|
#endif
|