| 43 | } |
| 44 | |
| 45 | VkQueryPool QueryPool::get_handle() const |
| 46 | { |
| 47 | assert(handle != VK_NULL_HANDLE && "QueryPool handle is invalid"); |
| 48 | return handle; |
| 49 | } |
| 50 | |
| 51 | void QueryPool::host_reset(uint32_t first_query, uint32_t query_count) |
| 52 | { |
no outgoing calls
no test coverage detected