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:
authorTon Roosendaal <ton@blender.org>2007-01-24 18:03:20 +0300
committerTon Roosendaal <ton@blender.org>2007-01-24 18:03:20 +0300
commit06826d27d4ce4b74b5d7a9af856a4c8616d29ce2 (patch)
tree3ad258e3648b45e847bcb7c82addac032ab5e3fe /source/blender/imbuf
parent4175460d852ec31691910b913186fbe390098ec2 (diff)
Bugfix #5818
OpenEXR MultiLayer: line order DECREASING_Y (openexr spec) crashes newer openexr libs in windows... ??? Removed it, since tests reveiled the line order is still bottom-top
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/openexr/openexr_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp
index 647d90f7927..0467c544b03 100644
--- a/source/blender/imbuf/intern/openexr/openexr_api.cpp
+++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp
@@ -443,7 +443,7 @@ void IMB_exr_begin_write(void *handle, char *filename, int width, int height, in
header.channels().insert (echan->name, Channel (FLOAT));
openexr_header_compression(&header, compress);
- header.lineOrder() = DECREASING_Y;
+ /* header.lineOrder() = DECREASING_Y; this crashes in windows for file read! */
header.insert ("BlenderMultiChannel", StringAttribute ("Blender V2.43"));