Skip to content

Commit

Permalink
Fixed USD comparison.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Oct 13, 2023
1 parent 033aa58 commit 66223d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mrv2/lib/mrvCore/mrvUSDInline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ namespace mrv
{
bool RenderOptions::operator==(const RenderOptions& b) const
{
return (*this == b);
return (
renderWidth == b.renderWidth && complexity == b.complexity &&
drawMode == b.drawMode && enableLighting == b.enableLighting &&
stageCache == b.stageCache && diskCache == b.diskCache);
}

bool RenderOptions::operator!=(const RenderOptions& b) const
Expand Down

0 comments on commit 66223d7

Please sign in to comment.