vkDestroyImageView
vkDestroyImageView is a function in the Vulkan graphics API used to destroy an image view object. Image views are Vulkan objects that represent a view into an image, allowing it to be sampled in a shader or used as a render target. When an image view is no longer needed, it should be destroyed to free up associated resources.
The function signature is VkResult vkDestroyImageView(VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator). The first argument, device,
Upon successful destruction, vkDestroyImageView returns VK_SUCCESS. If the imageView handle is invalid or if the image