| 1190 | } |
| 1191 | |
| 1192 | auto RenderCommandRecorder::operator=(RenderCommandRecorder && other) -> RenderCommandRecorder & |
| 1193 | { |
| 1194 | if (internal != nullptr) |
| 1195 | { |
| 1196 | daxa_destroy_command_recorder(this->internal); |
| 1197 | this->internal = {}; |
| 1198 | } |
| 1199 | std::swap(this->internal, other.internal); |
| 1200 | return *this; |
| 1201 | } |
| 1202 | |
| 1203 | RenderCommandRecorder::~RenderCommandRecorder() |
| 1204 | { |
nothing calls this directly
no test coverage detected