Sync changes from upstream repository

Co-authored-by: Andrew Le Bihan <andy@mcneel.com>
Co-authored-by: Bozo <bozo@mcneel.com>
Co-authored-by: Bozo the Builder <bozo@mcneel.com>
Co-authored-by: croudyj <croudyj@gmail.com>
Co-authored-by: Dale Lear <dalelear@mcneel.com>
Co-authored-by: Rafael Pastrana <arpj@princeton.edu>
Co-authored-by: Steve Baer <steve@mcneel.com>
This commit is contained in:
Bozo the Builder
2023-08-04 07:39:16 -07:00
parent f1f34d78a7
commit 2dee21797d
17 changed files with 874 additions and 150 deletions

View File

@@ -1012,7 +1012,10 @@ const ON_3dmRenderSettingsPrivate& ON_3dmRenderSettingsPrivate::operator = (cons
ON_ASSERT(*_render_channels == *p._render_channels);
ON_ASSERT(*_sun == *p._sun);
ON_ASSERT(*_environments == *p._environments);
ON_ASSERT(*_post_effects == *p._post_effects);
// We can't check post effects because they may be different in terms of the _is_populated flag.
// After a lot of thinking, I simply cannot figure out how to solve this.
//_ASSERT(*_post_effects == *p._post_effects);
}
return *this;