| 711 | } |
| 712 | |
| 713 | void Device::wait_on_submit(WaitOnSubmitInfo const & info) const |
| 714 | { |
| 715 | daxa_Result result = DAXA_RESULT_SUCCESS; |
| 716 | result = daxa_dvc_wait_on_submit(r_cast<daxa_Device>(this->object), r_cast<daxa_WaitOnSubmitInfo const *>(&info)); |
| 717 | check_result(result, "failed to get latest queue submit index"); |
| 718 | } |
| 719 | |
| 720 | void Device::present_frame(PresentInfo const & info) |
| 721 | { |
no test coverage detected