| 143 | } |
| 144 | |
| 145 | Rc<VltCommandList> VltDevice::createCommandList(VltQueueType queueType) |
| 146 | { |
| 147 | Rc<VltCommandList> cmdList = queueType == VltQueueType::Graphics |
| 148 | ? m_recycledCommandListsGraphics.retrieveObject() |
| 149 | : m_recycledCommandListsCompute.retrieveObject(); |
| 150 | if (cmdList == nullptr) |
| 151 | { |
| 152 | cmdList = new VltCommandList(this, queueType); |
| 153 | } |
| 154 | |
| 155 | return cmdList; |
| 156 | } |
| 157 | |
| 158 | Rc<VltDescriptorPool> VltDevice::createDescriptorPool() |
| 159 | { |
no test coverage detected