[Bf-blender-cvs] [0ecce09] master: Correct missing break

Campbell Barton noreply at git.blender.org
Thu Apr 30 00:22:04 CEST 2015


Commit: 0ecce09288c4141e1cfb65f81a53f19b6d726049
Author: Campbell Barton
Date:   Thu Apr 30 08:18:32 2015 +1000
Branches: master
https://developer.blender.org/rB0ecce09288c4141e1cfb65f81a53f19b6d726049

Correct missing break

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

M	source/blender/compositor/operations/COM_BlurBaseOperation.cpp

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

diff --git a/source/blender/compositor/operations/COM_BlurBaseOperation.cpp b/source/blender/compositor/operations/COM_BlurBaseOperation.cpp
index 07669b1..ce42de7 100644
--- a/source/blender/compositor/operations/COM_BlurBaseOperation.cpp
+++ b/source/blender/compositor/operations/COM_BlurBaseOperation.cpp
@@ -135,6 +135,7 @@ float *BlurBaseOperation::make_dist_fac_inverse(float rad, int size, int falloff
 				break;
 			case PROP_INVSQUARE:
 				val = val * (2.0f - val);
+				break;
 			case PROP_LIN:
 				/* fall-through */
 #ifndef NDEBUG




More information about the Bf-blender-cvs mailing list