| 207 | } |
| 208 | |
| 209 | void VltDevice::recycleCommandList( |
| 210 | const Rc<VltCommandList>& cmdList) |
| 211 | { |
| 212 | if (cmdList->type() == VltQueueType::Graphics) |
| 213 | { |
| 214 | m_recycledCommandListsGraphics.returnObject(cmdList); |
| 215 | } |
| 216 | else |
| 217 | { |
| 218 | m_recycledCommandListsCompute.returnObject(cmdList); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | void VltDevice::recycleDescriptorPool( |
| 223 | const Rc<VltDescriptorPool>& pool) |
no test coverage detected