mirror of
https://github.com/mcneel/opennurbs.git
synced 2026-03-17 23:16:02 +08:00
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:
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user