mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-04 05:50:26 +01:00
test: give the generic MT touchscreen realistic ranges
This way we can rely on physical coords on this screen being actually meaningful. Not currently in use but future tests will use this touch device as generic screen. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
f1e93b5159
commit
8b7320b8fa
1 changed files with 4 additions and 4 deletions
|
|
@ -57,11 +57,11 @@ static struct litest_device_interface interface = {
|
|||
};
|
||||
|
||||
static struct input_absinfo absinfo[] = {
|
||||
{ ABS_X, 0, 1500, 0, 0, 0 },
|
||||
{ ABS_Y, 0, 2500, 0, 0, 0 },
|
||||
{ ABS_X, 0, 50000, 0, 0, 100 },
|
||||
{ ABS_Y, 0, 33000, 0, 0, 100 },
|
||||
{ ABS_MT_SLOT, 0, 9, 0, 0, 0 },
|
||||
{ ABS_MT_POSITION_X, 0, 1500, 0, 0, 0 },
|
||||
{ ABS_MT_POSITION_Y, 0, 2500, 0, 0, 0 },
|
||||
{ ABS_MT_POSITION_X, 0, 50000, 0, 0, 100 },
|
||||
{ ABS_MT_POSITION_Y, 0, 33000, 0, 0, 100 },
|
||||
{ ABS_MT_ORIENTATION, -256, 255, 0, 0, 0 },
|
||||
{ ABS_MT_TOUCH_MAJOR, 0, 255, 1, 0, 0 },
|
||||
{ ABS_MT_TOUCH_MINOR, 0, 255, 1, 0, 0 },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue