| 2678 | } |
| 2679 | |
| 2680 | void Profiler::SendCallstack( int depth, const char* skipBefore ) |
| 2681 | { |
| 2682 | #ifdef TRACY_HAS_CALLSTACK |
| 2683 | auto ptr = Callstack( depth ); |
| 2684 | CutCallstack( ptr, skipBefore ); |
| 2685 | |
| 2686 | TracyLfqPrepare( QueueType::Callstack ); |
| 2687 | MemWrite( &item->callstack.ptr, (uint64_t)ptr ); |
| 2688 | TracyLfqCommit; |
| 2689 | #endif |
| 2690 | } |
| 2691 | |
| 2692 | void Profiler::CutCallstack( void* callstack, const char* skipBefore ) |
| 2693 | { |
no test coverage detected