forked from linux-sunxi/meta-sunxi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from koenkooi/danny
tslib git bbappend: make it work with the tslib_git.bb in meta-openembed...
- Loading branch information
Showing
2 changed files
with
81 additions
and
5 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
recipes-graphics/tslib/tslib/0001-Support-reading-coordinates-from-multitouch-devices.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
From c525c0b5d8eada982c99442454fcf7b8364e10b3 Mon Sep 17 00:00:00 2001 | ||
From: Florian Boor <[email protected]> | ||
Date: Fri, 1 Apr 2011 23:30:21 +0200 | ||
Subject: [PATCH] Support reading coordinates from multitouch devices. | ||
|
||
Signed-off-by: Florian Boor <[email protected]> | ||
Signed-off-by: Christopher Larson <[email protected]> | ||
--- | ||
plugins/input-raw.c | 33 +++++++++++++++++++++++---------- | ||
1 file changed, 23 insertions(+), 10 deletions(-) | ||
|
||
diff --git a/plugins/input-raw.c b/plugins/input-raw.c | ||
index 4396eab..1e48505 100644 | ||
--- a/plugins/input-raw.c | ||
+++ b/plugins/input-raw.c | ||
@@ -40,6 +40,11 @@ | ||
# define KEY_CNT (KEY_MAX+1) | ||
#endif | ||
|
||
+#ifndef ABS_MT_POSITION_X | ||
+# define ABS_MT_POSITION_X 0x35 /* Center X ellipse position */ | ||
+# define ABS_MT_POSITION_Y 0x36 /* Center Y ellipse position */ | ||
+#endif | ||
+ | ||
#include "tslib-private.h" | ||
|
||
#define GRAB_EVENTS_WANTED 1 | ||
@@ -160,16 +165,17 @@ static int ts_input_read(struct tslib_module_info *inf, | ||
} | ||
break; | ||
case EV_SYN: | ||
- /* Fill out a new complete event */ | ||
- if (pen_up) { | ||
- samp->x = 0; | ||
- samp->y = 0; | ||
- samp->pressure = 0; | ||
- pen_up = 0; | ||
- } else { | ||
- samp->x = i->current_x; | ||
- samp->y = i->current_y; | ||
- samp->pressure = i->current_p; | ||
+ if (ev.code == SYN_REPORT) { | ||
+ /* Fill out a new complete event */ | ||
+ if (pen_up) { | ||
+ samp->x = 0; | ||
+ samp->y = 0; | ||
+ samp->pressure = 0; | ||
+ pen_up = 0; | ||
+ } else { | ||
+ samp->x = i->current_x; | ||
+ samp->y = i->current_y; | ||
+ samp->pressure = i->current_p; | ||
} | ||
samp->tv = ev.time; | ||
#ifdef DEBUG | ||
@@ -179,6 +185,7 @@ static int ts_input_read(struct tslib_module_info *inf, | ||
#endif /* DEBUG */ | ||
samp++; | ||
total++; | ||
+ } | ||
break; | ||
case EV_ABS: | ||
switch (ev.code) { | ||
@@ -188,6 +195,12 @@ static int ts_input_read(struct tslib_module_info *inf, | ||
case ABS_Y: | ||
i->current_y = ev.value; | ||
break; | ||
+ case ABS_MT_POSITION_X: | ||
+ i->current_x = ev.value; | ||
+ break; | ||
+ case ABS_MT_POSITION_Y: | ||
+ i->current_y = ev.value; | ||
+ break; | ||
case ABS_PRESSURE: | ||
i->current_p = ev.value; | ||
break; | ||
-- | ||
1.8.1.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters