From 540bfbbb27966b4b8affeaa273a70beac9373b23 Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Tue, 29 Mar 2022 05:07:58 +0200 Subject: Fix T96582: Wipe effect not working Caused by oversight in 0e38002dd5dd. Constant x/y value was used to calculate transition instead of pixel x/y coords. --- source/blender/sequencer/intern/effects.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/sequencer/intern/effects.c b/source/blender/sequencer/intern/effects.c index 8f7088b0c4b..a4ab7671eb0 100644 --- a/source/blender/sequencer/intern/effects.c +++ b/source/blender/sequencer/intern/effects.c @@ -1681,7 +1681,7 @@ static void do_wipe_effect_byte(Sequence *seq, for (int i = 0; i < y; i++) { for (int j = 0; j < x; j++) { - float check = check_zone(&wipezone, x, y, seq, fac); + float check = check_zone(&wipezone, j, i, seq, fac); if (check) { if (cp1) { float rt1[4], rt2[4], tempc[4]; @@ -1742,7 +1742,7 @@ static void do_wipe_effect_float( for (int i = 0; i < y; i++) { for (int j = 0; j < x; j++) { - float check = check_zone(&wipezone, x, y, seq, fac); + float check = check_zone(&wipezone, j, i, seq, fac); if (check) { if (rt1) { rt[0] = rt1[0] * check + rt2[0] * (1 - check); -- cgit v1.2.3