| 611 | } |
| 612 | |
| 613 | auto Device::create_command_recorder(CommandRecorderInfo const & info) -> CommandRecorder |
| 614 | { |
| 615 | CommandRecorder ret = {}; |
| 616 | check_result(daxa_dvc_create_command_recorder( |
| 617 | r_cast<daxa_Device>(this->object), |
| 618 | r_cast<daxa_CommandRecorderInfo const *>(&info), |
| 619 | r_cast<daxa_CommandRecorder *>(&ret)), |
| 620 | "failed to create command recorder"); |
| 621 | return ret; |
| 622 | } |
| 623 | |
| 624 | using daxa_RayTracingPipelineLibraryInfo = daxa_RayTracingPipelineInfo; |
| 625 | using RayTracingPipelineLibraryInfo = RayTracingPipelineInfo; |
no test coverage detected