summaryrefslogtreecommitdiff
path: root/libavutil/vulkan.h
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2022-12-15 17:43:27 +0100
committerLynne <dev@lynne.ee>2023-05-29 00:41:45 +0200
commit15de0af8f0f620d4c38ca5fe88dc5c1412ea8354 (patch)
tree0cfbd714e813e6887700a12c8e5f661d3e98b83d /libavutil/vulkan.h
parentaf487904655ca45824fb4198b5ddfc00c906897a (diff)
vulkan: allow alloc pNext in ff_vk_create_buf
Diffstat (limited to 'libavutil/vulkan.h')
-rw-r--r--libavutil/vulkan.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/vulkan.h b/libavutil/vulkan.h
index 85836a7807..d75be26977 100644
--- a/libavutil/vulkan.h
+++ b/libavutil/vulkan.h
@@ -413,7 +413,8 @@ int ff_vk_submit_exec_queue(FFVulkanContext *s, FFVkExecContext *e);
/**
* Create a VkBuffer with the specified parameters.
*/
-int ff_vk_create_buf(FFVulkanContext *s, FFVkBuffer *buf, size_t size, void *pNext,
+int ff_vk_create_buf(FFVulkanContext *s, FFVkBuffer *buf, size_t size,
+ void *pNext, void *alloc_pNext,
VkBufferUsageFlags usage, VkMemoryPropertyFlagBits flags);
/**