| 277 | } |
| 278 | |
| 279 | static void NRI_CALL CmdSetPipelineLayout(CommandBuffer& commandBuffer, const PipelineLayout& pipelineLayout) { |
| 280 | ((CommandBufferVal&)commandBuffer).SetPipelineLayout(pipelineLayout); |
| 281 | } |
| 282 | |
| 283 | static void NRI_CALL CmdSetDescriptorSet(CommandBuffer& commandBuffer, uint32_t setIndex, const DescriptorSet& descriptorSet, const uint32_t* dynamicConstantBufferOffsets) { |
| 284 | ((CommandBufferVal&)commandBuffer).SetDescriptorSet(setIndex, descriptorSet, dynamicConstantBufferOffsets); |
nothing calls this directly
no test coverage detected