summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-10-21 10:37:00 +0200
committerStanislaw Halik <sthalik@misaki.pl>2014-10-21 10:37:00 +0200
commitb0eec42b61e81bd031307618bb28fd1200e4bfa8 (patch)
tree66a3ae4c019502dba930fcaae75dd363db780894
parent05b6069b505560a72d50f13c0b80a9e606df294f (diff)
-rw-r--r--opentrack/plugin-qt-api.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/opentrack/plugin-qt-api.hpp b/opentrack/plugin-qt-api.hpp
index 6fcea4f5..dd9cc280 100644
--- a/opentrack/plugin-qt-api.hpp
+++ b/opentrack/plugin-qt-api.hpp
@@ -15,13 +15,11 @@ public:
// XXX TODO get rid of QString/QFrame to fix ABI woes
// will lead plugins from different C++ runtimes working -sh 20141004
-// XXX TODO make public QWidget the mess -sh 20141004
-
struct IFilter
{
public:
virtual ~IFilter() {}
- virtual void filter(const double *target_camera_position, double *new_camera_position) = 0;
+ virtual void filter(const double *input, double *output) = 0;
};
struct IFilterDialog : public QWidget