Sync changes from upstream repository

Co-authored-by: Alain <alain@mcneel.com>
Co-authored-by: Andrew Le Bihan <andy@mcneel.com>
Co-authored-by: croudyj <croudyj@gmail.com>
Co-authored-by: Dale Fugier <dale@mcneel.com>
Co-authored-by: Dale Lear <dalelear@mcneel.com>
Co-authored-by: David Eränen <david.eranen@mcneel.com>
Co-authored-by: Greg Arden <greg@mcneel.com>
Co-authored-by: Mikko Oksanen <mikko@mcneel.com>
Co-authored-by: piac <giulio@mcneel.com>
Co-authored-by: Steve Baer <steve@mcneel.com>
Co-authored-by: TimHemmelman <tim@mcneel.com>
Co-authored-by: Will Pearson <will@mcneel.com>
This commit is contained in:
Bozo The Builder
2023-04-23 04:06:52 -07:00
parent f3687d492e
commit ef4be960ca
80 changed files with 8798 additions and 3118 deletions

View File

@@ -110,7 +110,7 @@ static ON_wString GetSortedCustomListAsString(const ON_RenderChannels& rch)
return GetSortedSemicolonDelimitedString(chan);
}
bool ON_RenderChannels::operator == (const ON_RenderChannels& rch)
bool ON_RenderChannels::operator == (const ON_RenderChannels& rch) const
{
if (Mode() != rch.Mode())
return false;
@@ -124,7 +124,7 @@ bool ON_RenderChannels::operator == (const ON_RenderChannels& rch)
return true;
}
bool ON_RenderChannels::operator != (const ON_RenderChannels& rch)
bool ON_RenderChannels::operator != (const ON_RenderChannels& rch) const
{
return !(operator == (rch));
}
@@ -173,3 +173,12 @@ void ON_RenderChannels::SetCustomList(const ON_SimpleArray<ON_UUID>& chan)
const ON_wString s = GetSortedSemicolonDelimitedString(chan);
m_impl->SetParameter(XMLPath(), ON_RDK_RCH_LIST, s);
}
void* ON_RenderChannels::EVF(const wchar_t* func, void* data)
{
return nullptr;
}
void ON_RenderChannels::InvalidateCache(void)
{
}