MCPcopy Create free account
hub / github.com/Ipotrick/Daxa / get_query_results

Method get_query_results

src/cpp_wrapper.cpp:942–950  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 2

copyFunction · 0.80
on_updateMethod · 0.80

Calls 4

check_resultFunction · 0.85
resizeMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected