summaryrefslogtreecommitdiff
path: root/src/grail-impl.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-09-21 11:17:02 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-09-21 12:56:17 +0200
commit2323cf93203686e2f19c125f780486fbe2ee327c (patch)
treeed37daff12c36926ff17ac87702a41aa479027d7 /src/grail-impl.h
parenta23067b7066786ceaa0779324e9120f8b04a6372 (diff)
Split pointer status and report status
Separate out reporting of the touch state, such that reporting can be deferred. Does not introduce any logic changes. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/grail-impl.h')
-rw-r--r--src/grail-impl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/grail-impl.h b/src/grail-impl.h
index af84a6c..6093a0f 100644
--- a/src/grail-impl.h
+++ b/src/grail-impl.h
@@ -32,7 +32,9 @@ struct grail_impl {
32 int filter_abs; 32 int filter_abs;
33 int pointer_status; 33 int pointer_status;
34 int pointer_x, pointer_y; 34 int pointer_x, pointer_y;
35 int report_status;
35 int report_x, report_y; 36 int report_x, report_y;
37 struct timeval report_time;
36}; 38};
37 39
38#endif 40#endif