| 1401 | } |
| 1402 | |
| 1403 | CommandRecorder::~CommandRecorder() |
| 1404 | { |
| 1405 | if (this->internal != nullptr) |
| 1406 | { |
| 1407 | daxa_destroy_command_recorder(this->internal); |
| 1408 | this->internal = {}; |
| 1409 | } |
| 1410 | } |
| 1411 | |
| 1412 | CommandRecorder::CommandRecorder(CommandRecorder && other) : internal{} |
| 1413 | { |
no test coverage detected