| 285 | } |
| 286 | |
| 287 | static void NRI_CALL CmdSetRootConstants(CommandBuffer& commandBuffer, uint32_t rootConstantIndex, const void* data, uint32_t size) { |
| 288 | ((CommandBufferVal&)commandBuffer).SetRootConstants(rootConstantIndex, data, size); |
| 289 | } |
| 290 | |
| 291 | static void NRI_CALL CmdSetRootDescriptor(CommandBuffer& commandBuffer, uint32_t rootDescriptorIndex, Descriptor& descriptor) { |
| 292 | ((CommandBufferVal&)commandBuffer).SetRootDescriptor(rootDescriptorIndex, descriptor); |
nothing calls this directly
no test coverage detected