Skip to content

Commit

Permalink
revert change made in a9f4157 (#1729)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpichard committed Oct 16, 2023
1 parent 192e82b commit 4b1a140
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@
### Bugfix
- [usd#1678](https://github.com/Autodesk/arnold-usd/issues/1678) - Add support for Arnold shaders with multiple outputs
- [usd#1711](https://github.com/Autodesk/arnold-usd/issues/1711) - Fix duplicated arnold user data introduced in 7.2.3.0
- [usd#1728](https://github.com/Autodesk/arnold-usd/issues/1728) - Fix cryptomatte compatibility with Nuke.

## [7.2.4.0] - 2023-10-04

Expand Down
2 changes: 1 addition & 1 deletion libs/render_delegate/render_pass.cpp
Expand Up @@ -297,7 +297,7 @@ AtNode* _CreateFilter(HdArnoldRenderDelegate* renderDelegate, const HdAovSetting
// We need to make sure that it's holding a string, then try to create it to make sure
// it's a node type supported by Arnold.
const auto filterType = _GetOptionalSetting(aovSettings, _tokens->aovSettingFilter, std::string{});
if (filterType.empty() || filterType == "cryptomatte_filter") {
if (filterType.empty()) {
return nullptr;
}
const auto filterNameStr =
Expand Down

0 comments on commit 4b1a140

Please sign in to comment.