This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit bea41f1f90485cd190e5db2b0bb7d95345e08688 Author: Lynne <[email protected]> AuthorDate: Fri Feb 27 16:47:45 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Tue Mar 24 15:21:17 2026 +0100 swscale/vulkan: implement SWS_OP_LSHIFT/SWS_OP_RSHIFT Sponsored-by: Sovereign Tech Fund --- libswscale/vulkan/ops.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libswscale/vulkan/ops.c b/libswscale/vulkan/ops.c index 51b85fa896..9a0ab253b8 100644 --- a/libswscale/vulkan/ops.c +++ b/libswscale/vulkan/ops.c @@ -296,6 +296,11 @@ static int add_ops_glsl(VulkanPriv *p, FFVulkanOpsCtx *s, op->type == SWS_PIXEL_F32 ? ".0f" : ""); } break; + case SWS_OP_LSHIFT: + case SWS_OP_RSHIFT: + av_bprintf(&shd->src, " %s %s= %i;\n", type_name, + op->op == SWS_OP_LSHIFT ? "<<" : ">>", op->c.u); + break; default: return AVERROR(ENOTSUP); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
