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>2013-04-05 19:45:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-05 19:45:10 +0400
commitcf76d73b8386242d7f655974837d7843c774b36c (patch)
tree5a31e591caf725a1b00664b789716b0e35cb1406 /source/blender/compositor/nodes
parent12981b004891aa6dbd2334a4c732ba38c1b0c349 (diff)
code cleanup: quiet some warnings and style
Diffstat (limited to 'source/blender/compositor/nodes')
-rw-r--r--source/blender/compositor/nodes/COM_ZCombineNode.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/compositor/nodes/COM_ZCombineNode.cpp b/source/blender/compositor/nodes/COM_ZCombineNode.cpp
index 35eedf435f6..82effaf0eda 100644
--- a/source/blender/compositor/nodes/COM_ZCombineNode.cpp
+++ b/source/blender/compositor/nodes/COM_ZCombineNode.cpp
@@ -67,7 +67,8 @@ void ZCombineNode::convertToOperations(ExecutionSystem *system, CompositorContex
system->addOperation(zoperation);
}
}
- } else {
+ }
+ else {
// not full anti alias, use masking for Z combine. be aware it uses anti aliasing.
// step 1 create mask
MathGreaterThanOperation *maskoperation = new MathGreaterThanOperation();