Skip to content

Commit

Permalink
Fix cimg constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKepzie committed Nov 7, 2014
1 parent 2043d66 commit 8d73501
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CImg/CImgBilateral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class CImgBilateralPlugin : public CImgFilterPluginHelper<CImgBilateralParams,fa
public:

CImgBilateralPlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgBilateralParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_sigma_s = fetchDoubleParam(kParamSigmaS);
_sigma_r = fetchDoubleParam(kParamSigmaR);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgBlur.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class CImgBlurPlugin : public CImgFilterPluginHelper<CImgBlurParams,false>
public:

CImgBlurPlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgBlurParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_sigma = fetchDoubleParam(kParamSigma);
_boundary = fetchChoiceParam(kParamBoundary);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgDenoise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class CImgDenoisePlugin : public CImgFilterPluginHelper<CImgDenoiseParams,false>
public:

CImgDenoisePlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgDenoiseParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_sigma_s = fetchDoubleParam(kParamSigmaS);
_sigma_r = fetchDoubleParam(kParamSigmaR);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgDilate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class CImgDilatePlugin : public CImgFilterPluginHelper<CImgDilateParams,false>
public:

CImgDilatePlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgDilateParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_size = fetchInt2DParam(kParamSize);
assert(_size);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgEqualize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class CImgEqualizePlugin : public CImgFilterPluginHelper<CImgEqualizeParams,fals
public:

CImgEqualizePlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgEqualizeParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_nb_levels = fetchIntParam(kParamNbLevels);
_min_value = fetchDoubleParam(kParamMin);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgErode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class CImgErodePlugin : public CImgFilterPluginHelper<CImgErodeParams,false>
public:

CImgErodePlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgErodeParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_size = fetchInt2DParam(kParamSize);
assert(_size);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgErodeSmooth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class CImgErodeSmoothPlugin : public CImgFilterPluginHelper<CImgErodeSmoothParam
public:

CImgErodeSmoothPlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgErodeSmoothParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_range = fetchDouble2DParam(kParamRange);
_sigma = fetchDoubleParam(kParamSigma);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgGuided.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class CImgGuidedPlugin : public CImgFilterPluginHelper<CImgGuidedParams,false>
public:

CImgGuidedPlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgGuidedParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_radius = fetchIntParam(kParamRadius);
_epsilon = fetchDoubleParam(kParamEpsilon);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgNoise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class CImgNoisePlugin : public CImgFilterPluginHelper<CImgNoiseParams,true>
public:

CImgNoisePlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgNoiseParams,true>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_sigma = fetchDoubleParam(kParamSigma);
_type = fetchChoiceParam(kParamType);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgPlasma.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class CImgPlasmaPlugin : public CImgFilterPluginHelper<CImgPlasmaParams,true>
public:

CImgPlasmaPlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgPlasmaParams,true>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_alpha = fetchDoubleParam(kParamAlpha);
_beta = fetchDoubleParam(kParamBeta);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgRollingGuidance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class CImgRollingGuidancePlugin : public CImgFilterPluginHelper<CImgRollingGuida
public:

CImgRollingGuidancePlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgRollingGuidanceParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_sigma_s = fetchDoubleParam(kParamSigmaS);
_sigma_r = fetchDoubleParam(kParamSigmaR);
Expand Down
2 changes: 1 addition & 1 deletion CImg/CImgSmooth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class CImgSmoothPlugin : public CImgFilterPluginHelper<CImgSmoothParams,false>
public:

CImgSmoothPlugin(OfxImageEffectHandle handle)
: CImgFilterPluginHelper(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
: CImgFilterPluginHelper<CImgSmoothParams,false>(handle, kSupportsTiles, kSupportsMultiResolution, kSupportsRenderScale)
{
_amplitude = fetchDoubleParam(kParamAmplitude);
_sharpness = fetchDoubleParam(kParamSharpness);
Expand Down

0 comments on commit 8d73501

Please sign in to comment.