Skip to content

Commit 30ec889

Browse files
author
mfe
committed
CTL : Remove useless function definition
1 parent aac9ad3 commit 30ec889

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

plugins/image/process/color/CTL/src/CTLPlugin.cpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,6 @@ bool CTLPlugin::getRegionOfDefinition( const OFX::RegionOfDefinitionArguments& a
9696
return false;
9797
}
9898

99-
void CTLPlugin::getRegionsOfInterest( const OFX::RegionsOfInterestArguments& args, OFX::RegionOfInterestSetter& rois )
100-
{
101-
OfxRectD srcRod = _clipSrc->getCanonicalRod( args.time );
102-
103-
OfxRectD srcRoi;
104-
srcRoi.x1 = srcRod.x1;
105-
srcRoi.y1 = srcRod.y1;
106-
srcRoi.x2 = srcRod.x2;
107-
srcRoi.y2 = srcRod.y2;
108-
rois.setRegionOfInterest( *_clipSrc, srcRoi );
109-
}
110-
11199
bool CTLPlugin::isIdentity( const OFX::RenderArguments& args, OFX::Clip*& identityClip, double& identityTime )
112100
{
113101
// CTLProcessParams<Scalar> params = getProcessParams();

plugins/image/process/color/CTL/src/CTLPlugin.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ class CTLPlugin : public ImageEffectGilPlugin
3434
void changedParam( const OFX::InstanceChangedArgs &args, const std::string &paramName );
3535

3636
bool getRegionOfDefinition( const OFX::RegionOfDefinitionArguments& args, OfxRectD& rod );
37-
void getRegionsOfInterest( const OFX::RegionsOfInterestArguments& args, OFX::RegionOfInterestSetter& rois );
3837
bool isIdentity( const OFX::RenderArguments& args, OFX::Clip*& identityClip, double& identityTime );
3938

4039
void render( const OFX::RenderArguments &args );

0 commit comments

Comments
 (0)