Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Examples/ColourSpace/colourspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ getClipPreferences( OfxImageEffectHandle effect, OfxPropertySetHandle /*inArgs*/
OfxPropertySetHandle effectProps;
gEffectHost->getPropertySet(effect, &effectProps);

// retieve the colour management style that the host has decided we shall use
// retrieve the colour management style that the host has decided we shall use
ColourManagementStyle active_style = ColourManagementStyle::None;
char * style;
if(gPropHost->propGetString(effectProps, kOfxImageEffectPropColourManagementStyle, 0, &style) == kOfxStatOK) {
Expand Down Expand Up @@ -606,7 +606,7 @@ getOutputColourspace( OfxImageEffectHandle effect, OfxPropertySetHandle /*inAr
OfxPropertySetHandle effectProps;
gEffectHost->getPropertySet(effect, &effectProps);

// retieve the colour management style that the host has decided we shall use
// retrieve the colour management style that the host has decided we shall use
ColourManagementStyle active_style = ColourManagementStyle::None;
char * style;
if(gPropHost->propGetString(effectProps, kOfxImageEffectPropColourManagementStyle, 0, &style) == kOfxStatOK) {
Expand Down
Loading