MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Tools / CreateQueryPool

Function CreateQueryPool

icd/generated/function_definitions.h:485–490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

483 // Destroy object
484}
485static VKAPI_ATTR VkResult VKAPI_CALL CreateQueryPool(VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo,
486 const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) {
487 unique_lock_t lock(global_lock);
488 *pQueryPool = (VkQueryPool)global_unique_handle++;
489 return VK_SUCCESS;
490}
491static VKAPI_ATTR void VKAPI_CALL DestroyQueryPool(VkDevice device, VkQueryPool queryPool,
492 const VkAllocationCallbacks* pAllocator) {
493 // Destroy object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected