| 1388 | } |
| 1389 | |
| 1390 | auto CommandRecorder::complete_current_commands() -> ExecutableCommandList |
| 1391 | { |
| 1392 | ExecutableCommandList ret = {}; |
| 1393 | auto result = daxa_cmd_complete_current_commands(this->internal, r_cast<daxa_ExecutableCommandList *>(&ret)); |
| 1394 | check_result(result, "failed to complete current commands"); |
| 1395 | return ret; |
| 1396 | } |
| 1397 | |
| 1398 | auto CommandRecorder::info() const -> CommandRecorderInfo const & |
| 1399 | { |
no test coverage detected