This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit d33bf6651906025d55732282592fe61c28359371
Author:     Lynne <[email protected]>
AuthorDate: Mon Dec 22 18:34:49 2025 +0100
Commit:     Lynne <[email protected]>
CommitDate: Mon Dec 22 19:46:27 2025 +0100

    vulkan_functions: add vkCmdUpdateBuffer
    
    It embeds the data to be uploaded directly into the command buffer,
    which makes it useful for uploading transient data.
---
 libavutil/vulkan_functions.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavutil/vulkan_functions.h b/libavutil/vulkan_functions.h
index d6a88160f8..d2e3c77bb8 100644
--- a/libavutil/vulkan_functions.h
+++ b/libavutil/vulkan_functions.h
@@ -155,6 +155,7 @@ typedef uint64_t FFVulkanExtensions;
     MACRO(1, 1, FF_VK_EXT_NO_FLAG,              CmdCopyImageToBuffer)          
          \
     MACRO(1, 1, FF_VK_EXT_NO_FLAG,              CmdClearColorImage)            
                        \
     MACRO(1, 1, FF_VK_EXT_NO_FLAG,              CmdCopyBuffer)                 
                        \
+    MACRO(1, 1, FF_VK_EXT_NO_FLAG,              CmdUpdateBuffer)               
                        \
                                                                                
          \
     /* Buffer */                                                               
          \
     MACRO(1, 1, FF_VK_EXT_NO_FLAG,              GetBufferMemoryRequirements2)  
          \

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to