aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/vulkan.h
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2022-03-17 12:23:56 +0100
committerLynne <dev@lynne.ee>2023-05-29 00:41:43 +0200
commitb5e333bba7cd0657c48b4ec996bc91fffec9d3e7 (patch)
treeda0eab6d6c5d8dcfa437e9506554ea5ec4cf5587 /libavutil/vulkan.h
parenta0d47a2ad99122fd21b78de78e335d06a12f00a4 (diff)
downloadffmpeg-b5e333bba7cd0657c48b4ec996bc91fffec9d3e7.tar.gz
vulkan: add pNext argument to ff_vk_create_buf()
Diffstat (limited to 'libavutil/vulkan.h')
-rw-r--r--libavutil/vulkan.h2
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);
/**