| 977 | } |
| 978 | |
| 979 | void Swapchain::wait_for_next_frame() |
| 980 | { |
| 981 | auto result = daxa_swp_wait_for_next_frame(r_cast<daxa_Swapchain>(this->object)); |
| 982 | check_result(result, "failed to wait for next frame"); |
| 983 | } |
| 984 | |
| 985 | auto Swapchain::acquire_next_image() -> ImageId |
| 986 | { |
nothing calls this directly
no test coverage detected