| 145 | } |
| 146 | |
| 147 | void CommandPool::Reset(const Location& loc) { |
| 148 | for (auto& entry : commandBuffers) { |
| 149 | auto guard = entry.second->WriteLock(); |
| 150 | entry.second->Reset(loc); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | void CommandPool::Destroy() { |
| 155 | for (auto& entry : commandBuffers) { |
no test coverage detected