Breaking Changes¶
ImagePlane¶
The following deprecated constructors have been removed:
ImageTilePtr( float* ptr, int stride );
ImageTileReadOnlyPtr( const float* ptr, int stride );
These should be replaced with the alternative constructors that allow bounds checking:
ImageTilePtr(float* ptr, float* startptr, float* endptr, int stride);
ImageTileReadOnlyPtr( const float* ptr, const float* startptr, const float* endptr, int stride );
Knob¶
The deprecated call to make_widget() without a WidgetContext has now been removed. The version that takes a WidgetContext should be used instead:
virtual WidgetPointer make_widget(const WidgetContext& context);
LUT¶
The deprecated builtin
functions have been removed:
static LUT* builtin(BuiltinLUTId n);
static LUT* builtin(const char* name);
Readers and Writers should use builtin( type, Reader* )
or builtin( type, Writer* )
instead to allow OCIO support. All other code should use GetBuiltinLUT
or GetBuiltinLutByName
instead.
Deprecated functions to get and set LUTs have also been removed:
static LUT* getLut(DataType);
static void setLut(DataType, LUT*);
To get LUTs, Readers and Writers should use GetLut( DataType, Reader* )
or GetLut( DataType, Writer* )
to allow OCIO support. All other code should use GetDefaultLutForType() instead.
To set LUTs, use SetLut(DataType, LUT*)
.
LightContext¶
LightContext has been made non-copyable and non-assignable.
MultiTile¶
MultiTile.h has been removed from DDImage and replaced by MultiTileIop.h. See New Features for details.
Op¶
The root_fps()
function has been removed. You should now use:
extern DDImage_API float (* root_real_fps)();
OutputContext¶
The frame(double v)
function has been removed. Use:
void setFrame(double v) { frame_ = v; }
Deep¶
Sample combination methods have been removed:
DeepSample PlusSamples(const ChannelMap& chanMap, DeepSample sampleA, DeepSample sampleB)
DeepSample MergeSamples(const ChannelMap& chanMap, DeepSample sampleA, DeepSample sampleB)
You should now use:
DDImage_API DeepLightSample PlusOperation(const ChannelMap& chanMap, const DeepLightSample& sampleA, const
DeepLightSample& sampleB)
DDImage_API DeepLightSample MergeOperation(const ChannelMap& chanMap, const DeepLightSample& sampleA, const
DeepLightSample& sampleB);
MetaData::Bundle –
MetaData::Bundle::iterator
has been removed along with functions that return or take this type, please use MetaData::Bundle::const_iterator
or ranged loop instead.
If you wish to modify the value of a key, use one of the MetaData::Bundle::setData
overloads