From 854e122e5d07baaef6f221ad7bcc436d8f3c077f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 3 Aug 2012 10:19:13 +0000 Subject: style cleanup: compositor --- source/blender/compositor/operations/COM_ColorMatteOperation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/compositor/operations/COM_ColorMatteOperation.cpp') diff --git a/source/blender/compositor/operations/COM_ColorMatteOperation.cpp b/source/blender/compositor/operations/COM_ColorMatteOperation.cpp index 5326e397494..26fbd99b43a 100644 --- a/source/blender/compositor/operations/COM_ColorMatteOperation.cpp +++ b/source/blender/compositor/operations/COM_ColorMatteOperation.cpp @@ -75,7 +75,7 @@ void ColorMatteOperation::executePixel(float *outputValue, float x, float y, Pix /* hue */ ((h_wrap = 2.f * fabsf(inColor[0] - inKey[0])) < hue || (2.f - h_wrap) < hue) ) { - outputValue[0] = 0.0f; /*make transparent*/ + outputValue[0] = 0.0f; /* make transparent */ } else { /*pixel is outside key color */ -- cgit v1.2.3