godot/drivers/vulkan
ChibiDenDen d104d8447b
Fix use-after-free for VkAttachmentReference
In the flow where VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME does not exist
VkAttachmentReference are created inside a loop and their backing buffer is referenced in the subpass object.
the VkAttachmentReference vectors are freed once the loop exists, causing the subpass to point to freed data.

Add all the VkAttachmentReference to a vector in the scope of the entire function, to ensure they are not freed until vkCreateRenderPass is called
2023-02-20 11:54:52 +02:00
..
SCsub
rendering_device_vulkan.cpp
rendering_device_vulkan.h
vulkan_context.cpp Fix use-after-free for VkAttachmentReference 2023-02-20 11:54:52 +02:00
vulkan_context.h
vulkan_hooks.h