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-06-15 17:35:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-15 17:35:24 +0400
commitd0ebb1df5761caec51ab73bfab41940e08d01aa0 (patch)
treed7438b6796e21774c3332ffd78e249967afdf4da /source/blender/compositor/intern/COM_ExecutionGroup.cpp
parent82473f67b358cc76c6e60ced68d73d7dac06a7b0 (diff)
fix for using un-initialized memory in the new compositor for the split view node.
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionGroup.cpp')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionGroup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionGroup.cpp b/source/blender/compositor/intern/COM_ExecutionGroup.cpp
index 7a53af7f58c..aaca97d8479 100644
--- a/source/blender/compositor/intern/COM_ExecutionGroup.cpp
+++ b/source/blender/compositor/intern/COM_ExecutionGroup.cpp
@@ -229,7 +229,7 @@ void ExecutionGroup::execute(ExecutionSystem *graph)
NodeOperation *operation = this->getOutputNodeOperation();
float centerX = 0.5;
float centerY = 0.5;
- int chunkorder = COM_TO_CENTER_OUT;
+ OrderOfChunks chunkorder = COM_ORDER_OF_CHUNKS_DEFAULT;
if (operation->isViewerOperation()) {
ViewerBaseOperation *viewer = (ViewerBaseOperation*)operation;