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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/operations/COM_MapValueOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_MapValueOperation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_MapValueOperation.cpp b/source/blender/compositor/operations/COM_MapValueOperation.cpp
index 33d38b8475d..5a7005af382 100644
--- a/source/blender/compositor/operations/COM_MapValueOperation.cpp
+++ b/source/blender/compositor/operations/COM_MapValueOperation.cpp
@@ -37,11 +37,11 @@ void MapValueOperation::executePixel(float* outputValue, float x, float y, Pixel
inputOperation->read(src, x, y, sampler, inputBuffers);
TexMapping *texmap= this->settings;
float value = (src[0] + texmap->loc[0])*texmap->size[0];
- if(texmap->flag & TEXMAP_CLIP_MIN)
- if(value<texmap->min[0])
+ if (texmap->flag & TEXMAP_CLIP_MIN)
+ if (value<texmap->min[0])
value= texmap->min[0];
- if(texmap->flag & TEXMAP_CLIP_MAX)
- if(value>texmap->max[0])
+ if (texmap->flag & TEXMAP_CLIP_MAX)
+ if (value>texmap->max[0])
value= texmap->max[0];
outputValue[0] = value;