summaryrefslogtreecommitdiff
path: root/src/box_filter_interpreter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/box_filter_interpreter.cc')
-rw-r--r--src/box_filter_interpreter.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/box_filter_interpreter.cc b/src/box_filter_interpreter.cc
index 3745e7a..b798b0c 100644
--- a/src/box_filter_interpreter.cc
+++ b/src/box_filter_interpreter.cc
@@ -21,7 +21,11 @@ BoxFilterInterpreter::BoxFilterInterpreter(PropRegistry* prop_reg,
void BoxFilterInterpreter::SyncInterpretImpl(HardwareState& hwstate,
stime_t* timeout) {
+ const char name[] = "BoxFilterInterpreter::SyncInterpretImpl";
+ LogHardwareStatePre(name, hwstate);
+
if (box_width_.val_ == 0.0 && box_height_.val_ == 0.0) {
+ LogHardwareStatePost(name, hwstate);
next_->SyncInterpret(hwstate, timeout);
return;
}
@@ -63,6 +67,7 @@ void BoxFilterInterpreter::SyncInterpretImpl(HardwareState& hwstate,
for (size_t i = 0; i < hwstate.finger_cnt; i++)
previous_output_[hwstate.fingers[i].tracking_id] = hwstate.fingers[i];
+ LogHardwareStatePost(name, hwstate);
next_->SyncInterpret(hwstate, timeout);
}