[Bf-committers] OpenEXR in Blender's CVS

Ted Schundler tschundler at gmail.com
Mon Mar 14 06:15:35 CET 2005


So, your OpenEXR changes broke Blender for me with scons -- The
openexr_lib directories and such are expected to be set,  regardless
whether use_openexr = 'true' or not. But that's all that was copied
into the other Platform parts of the SConstruct file. Here's a diff of
what I had to change for it to be happy on FreeBSD:

Index: SConstruct
===================================================================
RCS file: /cvsroot/bf-blender/blender/SConstruct,v
retrieving revision 1.100
diff -r1.100 SConstruct
777c777,781
<         use_openexr = 'false'
---
>       # OpenEXR stuff
>       openexr_lib = ['Iex', 'Half', 'IlmImf', 'Imath']
>       openexr_libpath = ['/usr/local/lib']
>       openexr_include = ['/usr/local/include/OpenEXR']
>         use_openexr = 'true'


Note that this sets "use_openexr = 'true'" as well, which maybe for
now you want to be "false"?

As for using the plugin, when it goes to save an image, it complains:
Write OPENEXR: no zbuf !

Maybe you should be letting it know you are saving rgba and not rgbaz?

Also, there are some issues openning the image in cinepaint - it is
flipped upside down. And if I enable fbuf, it ends up with alpha set
to complete transparency, so I can't see the image,


More information about the Bf-committers mailing list