| 289 | } |
| 290 | |
| 291 | static void NRI_CALL CmdSetRootDescriptor(CommandBuffer& commandBuffer, uint32_t rootDescriptorIndex, Descriptor& descriptor) { |
| 292 | ((CommandBufferVal&)commandBuffer).SetRootDescriptor(rootDescriptorIndex, descriptor); |
| 293 | } |
| 294 | |
| 295 | static void NRI_CALL CmdSetPipeline(CommandBuffer& commandBuffer, const Pipeline& pipeline) { |
| 296 | ((CommandBufferVal&)commandBuffer).SetPipeline(pipeline); |
nothing calls this directly
no test coverage detected