X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.cpp;h=f860cad283e7983b543beb2e4cfbb93501e5f4cb;hp=04b698f25bacecc29a03472910c6bfe5f22246d9;hb=bc31a9072da1d9bfe417fd850e92cabe049fd593;hpb=2b4a7d868112b4995bf6699f5b3aa68e9ec2b308 diff --git a/effect_chain.cpp b/effect_chain.cpp index 04b698f..f860cad 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -14,6 +14,7 @@ #include "lift_gamma_gain_effect.h" #include "colorspace_conversion_effect.h" #include "saturation_effect.h" +#include "mirror_effect.h" #include "vignette_effect.h" #include "texture_enum.h" @@ -45,6 +46,8 @@ Effect *instantiate_effect(EffectId effect) return new LiftGammaGainEffect(); case EFFECT_SATURATION: return new SaturationEffect(); + case EFFECT_MIRROR: + return new MirrorEffect(); case EFFECT_VIGNETTE: return new VignetteEffect(); }