]> git.sesse.net Git - nageru/blobdiff - flow.cpp
Remove some debugging code.
[nageru] / flow.cpp
index 71b0b23c6f85033f10cdbe93fb12798e2649778e..68392dc535b5a13c2efe5234a037347431df53af 100644 (file)
--- a/flow.cpp
+++ b/flow.cpp
@@ -953,11 +953,8 @@ void Blend::exec(GLuint image_tex, GLuint flow_tex, GLuint output_tex, GLuint ou
        glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
 }
 
-Interpolate::Interpolate(int width, int height, const OperatingPoint &op, bool split_ycbcr_output)
-       : width(width),
-         height(height),
-         flow_level(op.finest_level),
-         op(op),
+Interpolate::Interpolate(const OperatingPoint &op, bool split_ycbcr_output)
+       : flow_level(op.finest_level),
          split_ycbcr_output(split_ycbcr_output),
          splat(op),
          blend(split_ycbcr_output) {