diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-16 21:38:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-16 21:38:23 +0200 |
commit | 95f542365f6f1cd043c7b3090a67d269d6dde58b (patch) | |
tree | 4154c6e20097402789b43f9a48746fe4a3597e27 /opentrack/plugin-api.hpp | |
parent | 28deb29d72809b009b83dd8365fbae3043684f14 (diff) |
allow for filter immediate center
Diffstat (limited to 'opentrack/plugin-api.hpp')
-rw-r--r-- | opentrack/plugin-api.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/opentrack/plugin-api.hpp b/opentrack/plugin-api.hpp index 732dbb3d..a57077ab 100644 --- a/opentrack/plugin-api.hpp +++ b/opentrack/plugin-api.hpp @@ -61,6 +61,8 @@ struct IFilter // perform filtering step. // you have to take care of dt on your own, try "opentrack-compat/timer.hpp" virtual void filter(const double *input, double *output) = 0; + // optionally reset the filter when centering + virtual void center() {} }; struct IFilterDialog : public BaseDialog |