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_ChromaMatteOperation.cpp
parentc12d0fd76cff389c0b9e8e3ec4efad39d3dffc7a (diff)
style cleanup: compositor
Diffstat (limited to 'source/blender/compositor/operations/COM_ChromaMatteOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_ChromaMatteOperation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_ChromaMatteOperation.cpp b/source/blender/compositor/operations/COM_ChromaMatteOperation.cpp
index 85a19d7c60f..4be03e9d914 100644
--- a/source/blender/compositor/operations/COM_ChromaMatteOperation.cpp
+++ b/source/blender/compositor/operations/COM_ChromaMatteOperation.cpp
@@ -65,7 +65,7 @@ void ChromaMatteOperation::executePixel(float *outputValue, float x, float y, Pi
*/
/* Algorithm from book "Video Demistified," does not include the spill reduction part */
- /* find theta, the angle that the color space should be rotated based on key*/
+ /* find theta, the angle that the color space should be rotated based on key */
theta = atan2(inKey[2], inKey[1]);
/*rotate the cb and cr into x/z space */