diff options
author | Lynne <dev@lynne.ee> | 2024-07-14 18:27:23 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-07-14 18:31:44 +0200 |
commit | e11087b1629ed9df6c5810120b94597267684b17 (patch) | |
tree | 8f3c224f68d064c10b060c42fd6fbd219768e68f | |
parent | 4ec45aca36ff6c7c7767536ce7f4a855f8b37fb0 (diff) | |
download | ffmpeg-e11087b1629ed9df6c5810120b94597267684b17.tar.gz |
vulkan: set VkDescriptorAddressInfoEXT.sType
This was not done, resulting in validation issues, and potential
driver issues.
-rw-r--r-- | libavutil/vulkan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c index e0208c5a7c..a9125ea6b9 100644 --- a/libavutil/vulkan.c +++ b/libavutil/vulkan.c @@ -1689,6 +1689,7 @@ int ff_vk_set_descriptor_buffer(FFVulkanContext *s, FFVulkanPipeline *pl, .type = desc_set->binding[bind].descriptorType, }; VkDescriptorAddressInfoEXT desc_buf_info = { + .sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT, .address = addr, .range = len, .format = fmt, |