From 1fb55b14a6c694e082f0261e86f26d4f82948821 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 5 Jul 2017 09:35:40 +0200 Subject: [PATCH] Add some room for future expansion in ResampleEffect, since I have something that I would like them for and we are breaking the ABI anyway. --- resample_effect.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resample_effect.h b/resample_effect.h index 1aa459c..7538a68 100644 --- a/resample_effect.h +++ b/resample_effect.h @@ -79,6 +79,7 @@ private: float offset_x, offset_y; float zoom_x, zoom_y; float zoom_center_x, zoom_center_y; + float unused; }; class SingleResamplePassEffect : public Effect { @@ -128,6 +129,7 @@ private: int input_width, input_height, output_width, output_height; float offset, zoom; + float unused; int last_input_width, last_input_height, last_output_width, last_output_height; float last_offset, last_zoom; int src_bilinear_samples, num_loops; -- 2.39.2