| 316 | } |
| 317 | |
| 318 | void Queue::runGarbageCollection() |
| 319 | { |
| 320 | std::lock_guard lockGuard(m_Mutex); |
| 321 | |
| 322 | m_LifetimeTracker.runGarbageCollection(); |
| 323 | } |
| 324 | |
| 325 | void Queue::returnCommandBuffersToPool(std::list<TrackedCommandBufferPtr> const& commandBuffers) |
| 326 | { |
nothing calls this directly
no test coverage detected