| 22 | namespace vkb |
| 23 | { |
| 24 | QueryPool::QueryPool(vkb::core::DeviceC &d, const VkQueryPoolCreateInfo &info) : |
| 25 | device{d} |
| 26 | { |
| 27 | VK_CHECK(vkCreateQueryPool(device.get_handle(), &info, nullptr, &handle)); |
| 28 | } |
| 29 | |
| 30 | QueryPool::QueryPool(QueryPool &&other) : |
| 31 | device{other.device}, |
nothing calls this directly
no test coverage detected