| 940 | } |
| 941 | |
| 942 | auto TimelineQueryPool::get_query_results(u32 start_index, u32 count) -> std::vector<u64> |
| 943 | { |
| 944 | std::vector<u64> ret = {}; |
| 945 | ret.resize(count * 2); |
| 946 | check_result( |
| 947 | daxa_timeline_query_pool_query_results(rc_cast<daxa_TimelineQueryPool>(this->object), start_index, count, ret.data()), |
| 948 | "failed to query results of timeline query pool", std::array{DAXA_RESULT_SUCCESS, DAXA_RESULT_NOT_READY}); |
| 949 | return ret; |
| 950 | } |
| 951 | |
| 952 | auto TimelineQueryPool::inc_refcnt(ImplHandle const * object) -> u64 |
| 953 | { |
no test coverage detected