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

@@ -52,10 +52,10 @@ void LuminanceMatteOperation::executePixel(float* outputValue, float x, float y,
*/
/* test range*/
if(inColor[0] > high) {
if (inColor[0] > high) {
alpha=1.f;
}
else if(inColor[0] < low){
else if (inColor[0] < low) {
alpha=0.f;
}
else {/*blend */