| 393 | } |
| 394 | |
| 395 | static void NRI_CALL CmdReadbackTextureToBuffer(CommandBuffer& commandBuffer, Buffer& dstBuffer, const TextureDataLayoutDesc& dstDataLayoutDesc, const Texture& srcTexture, const TextureRegionDesc& srcRegionDesc) { |
| 396 | ((CommandBufferVal&)commandBuffer).ReadbackTextureToBuffer(dstBuffer, dstDataLayoutDesc, srcTexture, srcRegionDesc); |
| 397 | } |
| 398 | |
| 399 | static void NRI_CALL CmdClearStorageBuffer(CommandBuffer& commandBuffer, const ClearStorageBufferDesc& clearDesc) { |
| 400 | ((CommandBufferVal&)commandBuffer).ClearStorageBuffer(clearDesc); |
nothing calls this directly
no test coverage detected