Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-04-30 01:18:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-30 01:18:32 +0300
commit0ecce09288c4141e1cfb65f81a53f19b6d726049 (patch)
tree353be624d4f9c924ae3d0d7414bc08aea589289b /source
parentb640700597e4a331ee45f9a8850953e8e08cfd93 (diff)
Correct missing break
Diffstat (limited to 'source')
-rw-r--r--source/blender/compositor/operations/COM_BlurBaseOperation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_BlurBaseOperation.cpp b/source/blender/compositor/operations/COM_BlurBaseOperation.cpp
index 07669b1a814..ce42de7a149 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