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:
Diffstat (limited to 'source/blender/compositor/nodes/COM_OutputFileNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_OutputFileNode.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/compositor/nodes/COM_OutputFileNode.cpp b/source/blender/compositor/nodes/COM_OutputFileNode.cpp
index 09528e09f1f..e0cff1de276 100644
--- a/source/blender/compositor/nodes/COM_OutputFileNode.cpp
+++ b/source/blender/compositor/nodes/COM_OutputFileNode.cpp
@@ -50,7 +50,8 @@ void OutputFileNode::convertToOperations(NodeConverter &converter,
OutputOpenExrMultiLayerOperation *outputOperation;
if (is_multiview && storage->format.views_format == R_IMF_VIEWS_MULTIVIEW) {
- outputOperation = new OutputOpenExrMultiLayerMultiViewOperation(context.getRenderData(),
+ outputOperation = new OutputOpenExrMultiLayerMultiViewOperation(context.getScene(),
+ context.getRenderData(),
context.getbNodeTree(),
storage->base_path,
storage->format.exr_codec,
@@ -58,7 +59,8 @@ void OutputFileNode::convertToOperations(NodeConverter &converter,
context.getViewName());
}
else {
- outputOperation = new OutputOpenExrMultiLayerOperation(context.getRenderData(),
+ outputOperation = new OutputOpenExrMultiLayerOperation(context.getScene(),
+ context.getRenderData(),
context.getbNodeTree(),
storage->base_path,
storage->format.exr_codec,