X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.cpp;h=c55ee26849617374010b879785b6fcfd5cd55b52;hp=462633c2916526663bebe217af5b4853b4da09bf;hb=a22465673fce8a9db2cf88bccbee72db0e5b4c5e;hpb=60cc8cf581ceaac4eb7e636e85f9e6161005701d diff --git a/effect_chain.cpp b/effect_chain.cpp index 462633c..c55ee26 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -13,6 +13,7 @@ #include "gamma_compression_effect.h" #include "lift_gamma_gain_effect.h" #include "colorspace_conversion_effect.h" +#include "sandbox_effect.h" #include "saturation_effect.h" #include "mirror_effect.h" #include "vignette_effect.h" @@ -42,6 +43,8 @@ Effect *instantiate_effect(EffectId effect) return new GammaCompressionEffect(); case EFFECT_COLOR_SPACE_CONVERSION: return new ColorSpaceConversionEffect(); + case EFFECT_SANDBOX: + return new SandboxEffect(); case EFFECT_LIFT_GAMMA_GAIN: return new LiftGammaGainEffect(); case EFFECT_SATURATION: