From 06826d27d4ce4b74b5d7a9af856a4c8616d29ce2 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 24 Jan 2007 15:03:20 +0000 Subject: 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 --- source/blender/imbuf/intern/openexr/openexr_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/imbuf') 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")); -- cgit v1.2.3