| 270 | } |
| 271 | |
| 272 | void PaintBufferEngine::createStackTrace() |
| 273 | { |
| 274 | if (!Execution::stackTracingAvailable()) |
| 275 | return; |
| 276 | |
| 277 | const auto size = m_buffer->data()->commands.size(); |
| 278 | m_buffer->m_stackTraces.resize(size); |
| 279 | // TODO find a way to stop this at the analyzer call site, we don't want to see the gammaray call chain |
| 280 | m_buffer->m_stackTraces.back() = Execution::stackTrace(16, 2); |
| 281 | } |
| 282 | void PaintBufferEngine::pushOrigin() |
| 283 | { |
| 284 | const auto size = m_buffer->data()->commands.size(); |
nothing calls this directly
no test coverage detected