| 572 | } |
| 573 | |
| 574 | void CommandProcessor::BufferWait() |
| 575 | { |
| 576 | BufferInit(); |
| 577 | |
| 578 | Core::LockGuard lock(m_mutex); |
| 579 | |
| 580 | for (auto& buf: m_buffer) |
| 581 | { |
| 582 | EXIT_IF(buf == nullptr); |
| 583 | |
| 584 | buf->WaitForFenceAndReset(); |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | void CommandProcessor::ResetDeCe() |
| 589 | { |
no test coverage detected