| 1210 | } |
| 1211 | |
| 1212 | auto RenderCommandRecorder::end_renderpass() && -> CommandRecorder |
| 1213 | { |
| 1214 | daxa_cmd_end_renderpass(this->internal); |
| 1215 | CommandRecorder ret = {}; |
| 1216 | ret.internal = this->internal; |
| 1217 | this->internal = {}; |
| 1218 | return ret; |
| 1219 | } |
| 1220 | |
| 1221 | void RenderCommandRecorder::set_viewport(ViewportInfo const & info) |
| 1222 | { |
no test coverage detected