X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=gamma_expansion_effect.h;h=f079e7085f6e7ba6f6721f8aa3142e9ddb2f88e6;hb=2ced784c6599cb0b21427481ee17f4c8f6afdada;hp=1125d11f83cab515460d721e7011a434dfbea1ff;hpb=a04ce272078182de6bb49e5ea9834713f3d72cae;p=movit diff --git a/gamma_expansion_effect.h b/gamma_expansion_effect.h index 1125d11..f079e70 100644 --- a/gamma_expansion_effect.h +++ b/gamma_expansion_effect.h @@ -4,6 +4,8 @@ #include "effect.h" #include "effect_chain.h" +#define EXPANSION_CURVE_SIZE 256 + class GammaExpansionEffect : public Effect { public: GammaExpansionEffect(); @@ -14,6 +16,7 @@ public: private: GammaCurve source_curve; + float expansion_curve[EXPANSION_CURVE_SIZE]; }; #endif // !defined(_GAMMA_EXPANSION_EFFECT_H)