| 4457 | } |
| 4458 | |
| 4459 | void Profiler::SendCallstack( int depth ) |
| 4460 | { |
| 4461 | if( depth > 0 && has_callstack() ) |
| 4462 | { |
| 4463 | auto ptr = Callstack( depth ); |
| 4464 | TracyQueuePrepare( QueueType::Callstack ); |
| 4465 | MemWrite( &item->callstackFat.ptr, (uint64_t)ptr ); |
| 4466 | TracyQueueCommit( callstackFatThread ); |
| 4467 | } |
| 4468 | } |
| 4469 | |
| 4470 | void Profiler::ParameterRegister( ParameterCallback cb, void* data ) |
| 4471 | { |
no test coverage detected