| 970 | } |
| 971 | |
| 972 | void Swapchain::set_present_mode(PresentMode present_mode) |
| 973 | { |
| 974 | check_result( |
| 975 | daxa_swp_set_present_mode(r_cast<daxa_Swapchain>(this->object), std::bit_cast<VkPresentModeKHR>(present_mode)), |
| 976 | "failed to set swapchain present mode"); |
| 977 | } |
| 978 | |
| 979 | void Swapchain::wait_for_next_frame() |
| 980 | { |
nothing calls this directly
no test coverage detected