| 49 | } |
| 50 | |
| 51 | void QueryPool::host_reset(uint32_t first_query, uint32_t query_count) |
| 52 | { |
| 53 | assert(device.is_extension_enabled("VK_EXT_host_query_reset") && |
| 54 | "VK_EXT_host_query_reset needs to be enabled to call QueryPool::host_reset"); |
| 55 | |
| 56 | vkResetQueryPoolEXT(device.get_handle(), get_handle(), first_query, query_count); |
| 57 | } |
| 58 | |
| 59 | VkResult QueryPool::get_results(uint32_t first_query, uint32_t num_queries, |
| 60 | size_t result_bytes, void *results, VkDeviceSize stride, |
no test coverage detected