diff options
author | Lynne <dev@lynne.ee> | 2022-03-17 12:23:56 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 00:41:43 +0200 |
commit | b5e333bba7cd0657c48b4ec996bc91fffec9d3e7 (patch) | |
tree | da0eab6d6c5d8dcfa437e9506554ea5ec4cf5587 /libavutil/vulkan.h | |
parent | a0d47a2ad99122fd21b78de78e335d06a12f00a4 (diff) | |
download | ffmpeg-b5e333bba7cd0657c48b4ec996bc91fffec9d3e7.tar.gz |
vulkan: add pNext argument to ff_vk_create_buf()
Diffstat (limited to 'libavutil/vulkan.h')
-rw-r--r-- | libavutil/vulkan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/vulkan.h b/libavutil/vulkan.h index 107c12a746..c6cfb779fc 100644 --- a/libavutil/vulkan.h +++ b/libavutil/vulkan.h @@ -397,7 +397,7 @@ 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, +int ff_vk_create_buf(FFVulkanContext *s, FFVkBuffer *buf, size_t size, void *pNext, VkBufferUsageFlags usage, VkMemoryPropertyFlagBits flags); /** |