]> git.sesse.net Git - nageru/blobdiff - flow.h
When choosing a camera in the clip list, highlight the appropriate input.
[nageru] / flow.h
diff --git a/flow.h b/flow.h
index 9536a3808034868810f4ba3143d782b3315b11a4..af3f8103d5e9c0c817b0f5ca59a6d4f82d5c0972 100644 (file)
--- a/flow.h
+++ b/flow.h
@@ -541,7 +541,7 @@ private:
 
 class Interpolate {
 public:
-       Interpolate(int width, int height, const OperatingPoint &op, bool split_ycbcr_output);
+       Interpolate(const OperatingPoint &op, bool split_ycbcr_output);
 
        // Returns a texture (or two, if split_ycbcr_output is true) that must
        // be released with release_texture() after use. image_tex must be a
@@ -553,10 +553,9 @@ public:
        }
 
 private:
-       int width, height, flow_level;
+       int flow_level;
        GLuint vertex_vbo, vao;
        TexturePool pool;
-       const OperatingPoint op;
        const bool split_ycbcr_output;
 
        Splat splat;