| 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); |
| 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); |
nothing calls this directly
no test coverage detected