This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit eadfbc109dd95bc4033c0f0c47e9c776aa7ad55b Author: Lynne <[email protected]> AuthorDate: Tue Feb 3 11:23:07 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Thu Feb 19 19:42:26 2026 +0100 hwcontext_vulkan: disable shader object when debugging --- libavutil/hwcontext_vulkan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 3bcf5d732f..cfeaceaf0e 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -931,7 +931,8 @@ static int check_extensions(AVHWDeviceContext *ctx, int dev, AVDictionary *opts, ((debug_mode == FF_VULKAN_DEBUG_VALIDATE) || (debug_mode == FF_VULKAN_DEBUG_PRINTF) || (debug_mode == FF_VULKAN_DEBUG_PRACTICES)) && - !strcmp(tstr, VK_EXT_DESCRIPTOR_BUFFER_EXTENSION_NAME)) { + (!strcmp(tstr, VK_EXT_DESCRIPTOR_BUFFER_EXTENSION_NAME) || + !strcmp(tstr, VK_EXT_SHADER_OBJECT_EXTENSION_NAME))) { continue; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
