C Specification
To destroy a framebuffer, call:
| Warning | This functionality is deprecated by Vulkan Version 1.4. See Deprecated Functionality for more information. | 
// Provided by VK_VERSION_1_0
void vkDestroyFramebuffer(
    VkDevice                                    device,
    VkFramebuffer                               framebuffer,
    const VkAllocationCallbacks*                pAllocator);Parameters
- 
deviceis the logical device that destroys the framebuffer.
- 
framebufferis the handle of the framebuffer to destroy.
- 
pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.