7.3.1.0

27 March 2024

Arnold 7.3.1.0 is a feature release bringing updated denoising, improved MaterialX and OCIO support, API support for viewport display of procedural curves, as well as multiple bugfixes.

Important: Arnold 7.3.0.0 and later are not binary compatibility with previous versions of Arnold. Shaders, procedurals, and other plugins compiled against 7.2.5.3 and older versions of Arnold are not compatible with this version of Arnold and will need to be updated and recompiled.

Enhancements

USD Enhancements

API changes

The API is built upon a new AI_NODE_IMAGER node type and is implemented via two main API.

#define imager_evaluate
static void ImagerEvaluate(AtRenderSession* render_session, AtNode* node, struct AtOutputIterator* iterator, int bucket_xo, int bucket_yo, int bucket_size_x, int bucket_size_y, uint16_t tid)
#define imager_prepare
static void ImagerPrepare(AtRenderSession* render_session, AtNode* node, const AtNode* driver, struct AtOutputIterator* iterator, AtImagerSchedule& schedule);

Additionally, there are a couple of helper APIs for the imager_prepare method. These API let you request additional inputs to be rendered for imager evaluation, and to add additional output layers that the user may want to write to the driver.

AI_API bool AiImagerAddInput(AtRenderSession* render_session, const AtNode* imager, const AtNode* driver, int aov_type, AtString aov_name, AtNode* filter);
AI_API bool AiImagerAddOutput(AtRenderSession* render_session, const AtNode* imager, const AtNode* driver, int output_type, AtString output_name);
Tip: See Imager Nodes in the Arnold API Reference. For some example code, see Imagers Nodes in the Arnold Developer Guide. |

Incompatible Changes

Bug Fixes

System Requirements