mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-03-24 16:00:40 +01:00
test: fix resolution on Wacom ISDv4 E6 Finger device
Resolution for x is 10, 9 for y. And while we're at it set the actual resolution, not the fuzz. No actual effect since resolution can't be set through uinput where we use these devices. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
ef24f328d8
commit
4d1bc5ef5f
1 changed files with 4 additions and 4 deletions
|
|
@ -63,12 +63,12 @@ static struct litest_device_interface interface = {
|
|||
};
|
||||
|
||||
static struct input_absinfo absinfo[] = {
|
||||
{ ABS_X, 0, 2776, 75 },
|
||||
{ ABS_Y, 0, 1569, 129 },
|
||||
{ ABS_MT_SLOT, 0, 1, 0 },
|
||||
{ ABS_X, 0, 2776, 0, 0, 10 },
|
||||
{ ABS_Y, 0, 1569, 0, 0, 9 },
|
||||
{ ABS_MT_SLOT, 0, 1, 0, 0, 0 },
|
||||
{ ABS_MT_POSITION_X, 0, 2776, 0, 0, 10 },
|
||||
{ ABS_MT_POSITION_Y, 0, 1569, 0, 0, 9 },
|
||||
{ ABS_MT_TRACKING_ID, 0, 65535, 0 },
|
||||
{ ABS_MT_TRACKING_ID, 0, 65535, 0, 0, 0 },
|
||||
{ .value = -1 },
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue