]> git.sesse.net Git - movit/blobdiff - flat_input.h
Implement wrapping of the resampling parameter texture.
[movit] / flat_input.h
index 39419b1954fe5125fdd43386ca360a691c3f25f4..cf6b0b9264d878b0e90378c00d61cb5369fec741 100644 (file)
@@ -8,6 +8,7 @@
 class FlatInput : public Input {
 public:
        FlatInput(ImageFormat format, MovitPixelFormat pixel_format, GLenum type, unsigned width, unsigned height);
+       ~FlatInput();
 
        virtual std::string effect_type_id() const { return "FlatInput"; }
 
@@ -30,7 +31,7 @@ public:
 
        unsigned get_width() const { return width; }
        unsigned get_height() const { return height; }
-       ColorSpace get_color_space() const { return image_format.color_space; }
+       Colorspace get_color_space() const { return image_format.color_space; }
        GammaCurve get_gamma_curve() const { return image_format.gamma_curve; }
 
        // Tells the input where to fetch the actual pixel data. Note that if you change