MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / QueryPool

Method QueryPool

framework/core/query_pool.cpp:24–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22namespace vkb
23{
24QueryPool::QueryPool(vkb::core::DeviceC &d, const VkQueryPoolCreateInfo &info) :
25 device{d}
26{
27 VK_CHECK(vkCreateQueryPool(device.get_handle(), &info, nullptr, &handle));
28}
29
30QueryPool::QueryPool(QueryPool &&other) :
31 device{other.device},

Callers

nothing calls this directly

Calls 1

get_handleMethod · 0.45

Tested by

no test coverage detected