[Bf-blender-cvs] [44e9fe024bb] master: Fix T56877: Enabling mask Motion Blur overrides the Feather Falloff

Sergey Sharybin noreply at git.blender.org
Wed Jan 23 13:06:06 CET 2019


Commit: 44e9fe024bba014aa49b3a106fe89aa0b6e610cd
Author: Sergey Sharybin
Date:   Wed Jan 23 13:04:32 2019 +0100
Branches: master
https://developer.blender.org/rB44e9fe024bba014aa49b3a106fe89aa0b6e610cd

Fix T56877: Enabling mask Motion Blur overrides the Feather Falloff

Compositor makes a copy of mask before sampling the mask on different
time steps. The copy of layers did not copy falloff Settings.

===================================================================

M	source/blender/blenkernel/intern/mask.c

===================================================================

diff --git a/source/blender/blenkernel/intern/mask.c b/source/blender/blenkernel/intern/mask.c
index 3f6eaffa552..f219c225d9d 100644
--- a/source/blender/blenkernel/intern/mask.c
+++ b/source/blender/blenkernel/intern/mask.c
@@ -207,6 +207,7 @@ MaskLayer *BKE_mask_layer_copy(const MaskLayer *masklay)
 	masklay_new->blend = masklay->blend;
 	masklay_new->blend_flag = masklay->blend_flag;
 	masklay_new->flag = masklay->flag;
+	masklay_new->falloff = masklay->falloff;
 	masklay_new->restrictflag = masklay->restrictflag;
 
 	for (spline = masklay->splines.first; spline; spline = spline->next) {



More information about the Bf-blender-cvs mailing list