| 56 | TRACY_API uintptr_t* CallTrace( int depth ); |
| 57 | |
| 58 | static tracy_force_inline void* Callstack( int depth ) |
| 59 | { |
| 60 | assert( depth >= 1 && depth < 63 ); |
| 61 | return CallTrace( depth ); |
| 62 | } |
| 63 | |
| 64 | #elif TRACY_HAS_CALLSTACK == 2 || TRACY_HAS_CALLSTACK == 5 |
| 65 |
no test coverage detected