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

Function CreateRenderPass

icd/generated/function_definitions.h:871–876  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

869 // Destroy object
870}
871static VKAPI_ATTR VkResult VKAPI_CALL CreateRenderPass(VkDevice device, const VkRenderPassCreateInfo* pCreateInfo,
872 const VkAllocationCallbacks* pAllocator, VkRenderPass* pRenderPass) {
873 unique_lock_t lock(global_lock);
874 *pRenderPass = (VkRenderPass)global_unique_handle++;
875 return VK_SUCCESS;
876}
877static VKAPI_ATTR void VKAPI_CALL DestroyRenderPass(VkDevice device, VkRenderPass renderPass,
878 const VkAllocationCallbacks* pAllocator) {
879 // Destroy object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected