--- ray/doc/notes/ReleaseNotes 2016/01/29 16:21:55 1.273 +++ ray/doc/notes/ReleaseNotes 2016/03/24 18:48:28 1.278 @@ -2070,3 +2070,22 @@ Added ability to digest color (CIE-XYZ) input in pabop This change alters the .sir (interpolant) format, so these files will need to be regenerated. Use the new "#colorimetry: CIE-XYZ" tag to enable on input. + +Rewrote bsdf2klems to support tristimulus color and call wrapBSDF. +Did the same for bsdf2ttree. Function specifications still gray only. + +Reduced a problem where rvu or rholo would be slow to quit when +run with many processes on a large model or one with a large +ambient file (taking lots of memory). We were waiting for +processes to quit one-by-one, which takes some time for each +process as it disentangles its shared memory. We now +wait for all the processes together, so they can disentangle +in parallel. It can still take up to a minute in some cases, +but not 10 minutes like it was taking before the fix. + +Enabled ambient cache value corral for all levels, not just final two. +This may reduce errors in certain pathological scenes. + +Added -in option to rcalc, rlam, and total to limit the number of +input records in hopes of circumventing Windows EOF issues on binary data. +Also added -on option to rcalc and total for logical symmetry.