X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=flow.h;h=af3f8103d5e9c0c817b0f5ca59a6d4f82d5c0972;hb=c4508efc504090116e146a1f38659fe7de8398df;hp=9536a3808034868810f4ba3143d782b3315b11a4;hpb=f96a233d97789c748000975e486e8b89c5c7d472;p=nageru diff --git a/flow.h b/flow.h index 9536a38..af3f810 100644 --- 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;