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

Function CreateFramebuffer

icd/generated/function_definitions.h:861–866  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

859 return VK_SUCCESS;
860}
861static 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}
867static VKAPI_ATTR void VKAPI_CALL DestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer,
868 const VkAllocationCallbacks* pAllocator) {
869 // Destroy object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected