diff options
author | Lynne <dev@lynne.ee> | 2022-12-15 17:43:27 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 00:41:45 +0200 |
commit | 15de0af8f0f620d4c38ca5fe88dc5c1412ea8354 (patch) | |
tree | 0cfbd714e813e6887700a12c8e5f661d3e98b83d /libavutil/vulkan.h | |
parent | af487904655ca45824fb4198b5ddfc00c906897a (diff) | |
download | ffmpeg-15de0af8f0f620d4c38ca5fe88dc5c1412ea8354.tar.gz |
vulkan: allow alloc pNext in ff_vk_create_buf
Diffstat (limited to 'libavutil/vulkan.h')
-rw-r--r-- | libavutil/vulkan.h | 3 |
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); /** |