]> git.sesse.net Git - movit/blobdiff - effect.h
Add unit tests for WhiteBalanceEffect.
[movit] / effect.h
index da4f74d0f4dee5b9c586e6798f24e612b27ba1e6..dd4dbed8f8bb9b3033d4e55faf0638c5c80c5f50 100644 (file)
--- a/effect.h
+++ b/effect.h
@@ -50,8 +50,10 @@ void set_uniform_mat3(GLuint glsl_program_num, const std::string &prefix, const
 
 class Effect {
 public:
+       virtual ~Effect() {}
+
        // An identifier for this type of effect, mostly used for debug output
-       // (but some special names, like "ColorSpaceConversionEffect", holds special
+       // (but some special names, like "ColorspaceConversionEffect", holds special
        // meaning). Same as the class name is fine.
        virtual std::string effect_type_id() const = 0;