| 187 | } |
| 188 | |
| 189 | static void NRI_CALL DestroyCommandBuffer(CommandBuffer& commandBuffer) { |
| 190 | if (!(&commandBuffer)) |
| 191 | return; |
| 192 | |
| 193 | GetDeviceVal(commandBuffer).DestroyCommandBuffer(commandBuffer); |
| 194 | } |
| 195 | |
| 196 | static void NRI_CALL DestroyDescriptorPool(DescriptorPool& descriptorPool) { |
| 197 | if (!(&descriptorPool)) |
nothing calls this directly
no test coverage detected