From c7fd1906f82eb79e061a150af8f6ac2dd69bac4a Mon Sep 17 00:00:00 2001 From: Daniel Dresser Date: Thu, 22 May 2025 15:33:31 -0700 Subject: [PATCH] IECore/TypeIds.h : Reserve new Id range for Gaffer 1.6 --- include/IECore/TypeIds.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/IECore/TypeIds.h b/include/IECore/TypeIds.h index 28883e12b2..f6e0720459 100644 --- a/include/IECore/TypeIds.h +++ b/include/IECore/TypeIds.h @@ -285,8 +285,8 @@ enum TypeId FirstCoreMayaTypeId = 109000, LastCoreMayaTypeId = 109999, - FirstGafferTypeId = 110000, - LastGafferTypeId = 110999, + OldFirstGafferTypeId = 110000, // Used by Gaffer 1.5 and earlier + OldLastGafferTypeId = 110999, FirstCoreHoudiniTypeId = 111000, LastCoreHoudiniTypeId = 111999, @@ -309,6 +309,9 @@ enum TypeId FirstCoreVDBTypeId = 117000, LastCoreVDBTypeId = 117999, + FirstGafferTypeId = 118000, // Used by Gaffer 1.6 and later + LastGafferTypeId = 127999, + // TypeIds dynamically allocated by registerRunTimeTyped (IECore Python) FirstDynamicTypeId = 300000, LastDynamicTypeId = 399999,