Deprecated Changes¶
Memory¶
The environment variables NUKE_USE_FAST_ALLOCATOR and NUKE_USE_SYSTEM_ALLOCATOR are no longer used and should be updated to use the NUKE_ALLOCATOR environment variable. Possible values are: “System”, “TC” or “TBB”.
Deep¶
Sample combination methods have been deprecated:
DeepSample PlusSamples(const ChannelMap& chanMap, DeepSample sampleA, DeepSample sampleB)
DeepSample MergeSamples(const ChannelMap& chanMap, DeepSample sampleA, DeepSample sampleB)
You should now use:
DDImage_API DeepLightSample PlusOperation(const ChannelMap& chanMap, const DeepLightSample& sampleA, const
DeepLightSample& sampleB)
DDImage_API DeepLightSample MergeOperation(const ChannelMap& chanMap, const DeepLightSample& sampleA, const
DeepLightSample& sampleB);