From: IndecisiveTurtle <geoster3d@gmail.com> To: ffmpeg-devel@ffmpeg.org Cc: IndecisiveTurtle <47210458+raphaelthegreat@users.noreply.github.com> Subject: [FFmpeg-devel] [PATCH] libavutil/vulkan: Expose ff_vk_set_descriptor_image Date: Fri, 28 Feb 2025 09:45:29 +0200 Message-ID: <20250228074529.50132-1-geoster3d@gmail.com> (raw) From: IndecisiveTurtle <47210458+raphaelthegreat@users.noreply.github.com> Useful when creating a descriptor array of separate images --- libavutil/vulkan.c | 12 ++++++------ libavutil/vulkan.h | 8 ++++++++ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c index 31610e2d94..91415957fd 100644 --- a/libavutil/vulkan.c +++ b/libavutil/vulkan.c @@ -2381,10 +2381,10 @@ static inline void update_set_pool_write(FFVulkanContext *s, FFVkExecContext *e, } } -static int vk_set_descriptor_image(FFVulkanContext *s, FFVulkanShader *shd, - FFVkExecContext *e, int set, int bind, int offs, - VkImageView view, VkImageLayout layout, - VkSampler sampler) +int ff_vk_set_descriptor_image(FFVulkanContext *s, FFVulkanShader *shd, + FFVkExecContext *e, int set, int bind, int offs, + VkImageView view, VkImageLayout layout, + VkSampler sampler) { FFVulkanDescriptorSet *desc_set = &shd->desc_set[set]; @@ -2521,8 +2521,8 @@ void ff_vk_shader_update_img_array(FFVulkanContext *s, FFVkExecContext *e, const int nb_planes = av_pix_fmt_count_planes(hwfc->sw_format); for (int i = 0; i < nb_planes; i++) - vk_set_descriptor_image(s, shd, e, set, binding, i, - views[i], layout, sampler); + ff_vk_set_descriptor_image(s, shd, e, set, binding, i, + views[i], layout, sampler); } void ff_vk_shader_update_push_const(FFVulkanContext *s, FFVkExecContext *e, diff --git a/libavutil/vulkan.h b/libavutil/vulkan.h index 8690c13b3d..04068713be 100644 --- a/libavutil/vulkan.h +++ b/libavutil/vulkan.h @@ -580,6 +580,14 @@ void ff_vk_shader_update_push_const(FFVulkanContext *s, FFVkExecContext *e, VkShaderStageFlagBits stage, int offset, size_t size, void *src); +/** + * Sets an image descriptor for specified shader and binding. + */ +int ff_vk_set_descriptor_image(FFVulkanContext *s, FFVulkanShader *shd, + FFVkExecContext *e, int set, int bind, int offs, + VkImageView view, VkImageLayout layout, + VkSampler sampler); + /** * Update a descriptor in a buffer with a buffer. * Must be called before binding the shader. -- 2.48.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next reply other threads:[~2025-02-28 7:46 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-02-28 7:45 IndecisiveTurtle [this message] 2025-02-28 7:49 IndecisiveTurtle 2025-02-28 12:45 ` Lynne 2025-02-28 13:38 ` Andreas Rheinhardt
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20250228074529.50132-1-geoster3d@gmail.com \ --to=geoster3d@gmail.com \ --cc=47210458+raphaelthegreat@users.noreply.github.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git