[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15564] trunk/blender/source/blender/imbuf /intern/openexr/openexr_api.cpp: Bugfix #17327

Ton Roosendaal ton at blender.org
Mon Jul 14 12:26:11 CEST 2008


Revision: 15564
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15564
Author:   ton
Date:     2008-07-14 12:26:11 +0200 (Mon, 14 Jul 2008)

Log Message:
-----------
Bugfix #17327

Small one: changed the string attribute in multilayer exr files to be:

"2.43 and newer"

To indicate that it's about compatibility of the exr file, not the version
Blender saved it in.

Modified Paths:
--------------
    trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp

Modified: trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp
===================================================================
--- trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp	2008-07-14 09:37:06 UTC (rev 15563)
+++ trunk/blender/source/blender/imbuf/intern/openexr/openexr_api.cpp	2008-07-14 10:26:11 UTC (rev 15564)
@@ -451,7 +451,7 @@
 	openexr_header_compression(&header, compress);
 	/* header.lineOrder() = DECREASING_Y; this crashes in windows for file read! */
 	
-	header.insert ("BlenderMultiChannel", StringAttribute ("Blender V2.43"));
+	header.insert ("BlenderMultiChannel", StringAttribute ("Blender V2.43 and newer"));
 	
 	data->ofile = new OutputFile(filename, header);
 }





More information about the Bf-blender-cvs mailing list