| 376 | } |
| 377 | |
| 378 | void TracyVkCollector::Collect() { |
| 379 | VVL_ZoneScoped; |
| 380 | std::lock_guard collect_lock(collect_mutex); |
| 381 | should_collect = true; |
| 382 | collect_cv.notify_one(); |
| 383 | } |
| 384 | |
| 385 | std::optional<std::pair<VkCommandBuffer, VkFence>> TracyVkCollector::TryGetCollectCb(VkQueue queue) { |
| 386 | if (this->queue != queue) { |
no outgoing calls
no test coverage detected