| 273 | } |
| 274 | |
| 275 | static void NRI_CALL CmdSetDescriptorPool(CommandBuffer& commandBuffer, const DescriptorPool& descriptorPool) { |
| 276 | ((CommandBufferVal&)commandBuffer).SetDescriptorPool(descriptorPool); |
| 277 | } |
| 278 | |
| 279 | static void NRI_CALL CmdSetPipelineLayout(CommandBuffer& commandBuffer, const PipelineLayout& pipelineLayout) { |
| 280 | ((CommandBufferVal&)commandBuffer).SetPipelineLayout(pipelineLayout); |
nothing calls this directly
no test coverage detected