From f40e6e8a60fefcab06e3a40e5b14c860d11820cf Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Mon, 7 Jul 2025 11:14:09 +0200 Subject: [PATCH] Fix: Vulkan: Use feature struct Detected an incorrect structure type. A property struct was used to store feature data. This could lead to incorrect values for enabling descriptorBufferPushDescriptor, what isn't used. --- intern/ghost/intern/GHOST_ContextVK.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/ghost/intern/GHOST_ContextVK.cc b/intern/ghost/intern/GHOST_ContextVK.cc index 4419cb57ab1..8b3dea35b23 100644 --- a/intern/ghost/intern/GHOST_ContextVK.cc +++ b/intern/ghost/intern/GHOST_ContextVK.cc @@ -373,7 +373,7 @@ class GHOST_DeviceVK { } /* Descriptor buffers */ - VkPhysicalDeviceDescriptorBufferPropertiesEXT descriptor_buffer = { + VkPhysicalDeviceDescriptorBufferFeaturesEXT descriptor_buffer = { VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_FEATURES_EXT, nullptr, VK_TRUE,