| 859 | return VK_SUCCESS; |
| 860 | } |
| 861 | static VKAPI_ATTR VkResult VKAPI_CALL CreateFramebuffer(VkDevice device, const VkFramebufferCreateInfo* pCreateInfo, |
| 862 | const VkAllocationCallbacks* pAllocator, VkFramebuffer* pFramebuffer) { |
| 863 | unique_lock_t lock(global_lock); |
| 864 | *pFramebuffer = (VkFramebuffer)global_unique_handle++; |
| 865 | return VK_SUCCESS; |
| 866 | } |
| 867 | static VKAPI_ATTR void VKAPI_CALL DestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, |
| 868 | const VkAllocationCallbacks* pAllocator) { |
| 869 | // Destroy object |
nothing calls this directly
no outgoing calls
no test coverage detected