| 869 | // Destroy object |
| 870 | } |
| 871 | static 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 | } |
| 877 | static VKAPI_ATTR void VKAPI_CALL DestroyRenderPass(VkDevice device, VkRenderPass renderPass, |
| 878 | const VkAllocationCallbacks* pAllocator) { |
| 879 | // Destroy object |
nothing calls this directly
no outgoing calls
no test coverage detected