X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.cpp;h=2bae9ed4e6f96b91567ecf6ac1c9d40497b75273;hp=1ff57d75672b3769121f7c0956941c6538415620;hb=f428e5f85aeda850d43c4b134fbb286b574c63fb;hpb=bfa58911af9e945f3532a2c48306b4e9e293e0f7 diff --git a/effect_chain.cpp b/effect_chain.cpp index 1ff57d7..2bae9ed 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 "saturation_effect.h" #include "texture_enum.h" EffectChain::EffectChain(unsigned width, unsigned height) @@ -39,6 +40,8 @@ Effect *instantiate_effect(EffectId effect) return new GammaExpansionEffect(); case LIFT_GAMMA_GAIN: return new LiftGammaGainEffect(); + case SATURATION: + return new SaturationEffect(); } assert(false); }