style cleanup: braces, compositor

This commit is contained in:
2012-05-17 13:44:15 +00:00
parent fe0d1a3810
commit 979f6bab9c
108 changed files with 802 additions and 545 deletions

View File

@@ -97,10 +97,10 @@ void ChannelMatteOperation::executePixel(float* outputValue, float x, float y, P
alpha = 1.f - alpha;
/* test range*/
if(alpha > limit_max) {
if (alpha > limit_max) {
alpha = inColor[3]; /*whatever it was prior */
}
else if(alpha < limit_min){
else if (alpha < limit_min) {
alpha = 0.f;
}
else {/*blend */