| 35 | } |
| 36 | |
| 37 | QueryPool::~QueryPool() |
| 38 | { |
| 39 | if (handle != VK_NULL_HANDLE) |
| 40 | { |
| 41 | vkDestroyQueryPool(device.get_handle(), handle, nullptr); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | VkQueryPool QueryPool::get_handle() const |
| 46 | { |
nothing calls this directly
no test coverage detected