mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
With gcc/clang the wrapper functions for intrinsics are annoyingly inserted at top level of stack traces, making it hard to see the call site. Filter out all known instrinsic headers.
19 lines
247 B
C++
19 lines
247 B
C++
#ifndef __TRACYSTACKFRAMES_HPP__
|
|
#define __TRACYSTACKFRAMES_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct StringMatch
|
|
{
|
|
const char* str;
|
|
size_t len;
|
|
};
|
|
|
|
extern const char** s_tracyStackFrames;
|
|
extern const StringMatch* s_tracySkipSubframes;
|
|
|
|
}
|
|
|
|
#endif
|