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:
authorLukas Toenne <lukas.toenne@googlemail.com>2012-03-01 21:02:05 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2012-03-01 21:02:05 +0400
commitc1e8d77842ab9a208d8bc76205a13c72cdb89983 (patch)
tree6c7f729e1168b062007f14cf8dbff21285e2c521 /source/blender/nodes
parente89f09a77474a8384f4e7cf0809ea975d367b24e (diff)
Same fix for file output node as Brecht did in r44580, EXR compression is defined in exr_codec instead compression.
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_outputFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_outputFile.c b/source/blender/nodes/composite/nodes/node_composite_outputFile.c
index dd24552422d..fc92c3aabc8 100644
--- a/source/blender/nodes/composite/nodes/node_composite_outputFile.c
+++ b/source/blender/nodes/composite/nodes/node_composite_outputFile.c
@@ -287,7 +287,7 @@ static void exec_output_file_multilayer(RenderData *rd, bNode *node, bNodeStack
}
/* when the filename has no permissions, this can fail */
- if(IMB_exr_begin_write(exrhandle, filename, rectx, recty, nimf->format.compress)) {
+ if(IMB_exr_begin_write(exrhandle, filename, rectx, recty, nimf->format.exr_codec)) {
IMB_exr_write_channels(exrhandle);
}
else {