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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-03 14:19:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-03 14:19:13 +0400
commit854e122e5d07baaef6f221ad7bcc436d8f3c077f (patch)
treed176e6306801bdf8ec15ce4243e8d369b2dafa46 /source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
parentc12d0fd76cff389c0b9e8e3ec4efad39d3dffc7a (diff)
style cleanup: compositor
Diffstat (limited to 'source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp b/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
index ed3799fff5e..a95d1eec290 100644
--- a/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
+++ b/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
@@ -64,7 +64,7 @@ void DifferenceMatteOperation::executePixel(float *outputValue, float x, float y
/* average together the distances */
difference = difference / 3.0f;
- /*make 100% transparent*/
+ /* make 100% transparent */
if (difference < tolerance) {
outputValue[0] = 0.0f;
}
@@ -81,7 +81,7 @@ void DifferenceMatteOperation::executePixel(float *outputValue, float x, float y
}
}
else {
- /*foreground object*/
+ /* foreground object */
outputValue[0] = inColor1[3];
}
}