| 963 | /// --- Begin Swapchain --- |
| 964 | |
| 965 | void Swapchain::resize() |
| 966 | { |
| 967 | check_result( |
| 968 | daxa_swp_resize(r_cast<daxa_Swapchain>(this->object)), |
| 969 | "failed to resize swapchain", std::array{DAXA_RESULT_SUCCESS, DAXA_RESULT_ERROR_OUT_OF_DATE_KHR}); |
| 970 | } |
| 971 | |
| 972 | void Swapchain::set_present_mode(PresentMode present_mode) |
| 973 | { |
no test coverage detected