mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-03 18:57:59 +02:00
test: add a LITEST_DIRECT feature for the wacom cintiqs
Currently unused, but will be used in later patches Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
ab1dbcc996
commit
794bff8af0
5 changed files with 5 additions and 4 deletions
|
|
@ -139,7 +139,7 @@ static int events[] = {
|
|||
|
||||
TEST_DEVICE("wacom-cintiq-tablet",
|
||||
.type = LITEST_WACOM_CINTIQ,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT | LITEST_DIRECT,
|
||||
.interface = &interface,
|
||||
|
||||
.name = "Wacom Cintiq 12WX",
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ static const char udev_rule[] =
|
|||
|
||||
TEST_DEVICE("wacom-cintiq-13hdt-pen-tablet",
|
||||
.type = LITEST_WACOM_CINTIQ_13HDT_PEN,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT | LITEST_DIRECT,
|
||||
.interface = &interface,
|
||||
|
||||
.name = "Wacom Cintiq 13 HD touch Pen",
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ static int events[] = {
|
|||
|
||||
TEST_DEVICE("wacom-cintiq-24hd-tablet",
|
||||
.type = LITEST_WACOM_CINTIQ_24HD,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT | LITEST_DIRECT,
|
||||
.interface = &interface,
|
||||
|
||||
.name = "Wacom Cintiq 24 HD Pen",
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ static const char udev_rule[] =
|
|||
|
||||
TEST_DEVICE("wacom-cintiq-pro16-pen",
|
||||
.type = LITEST_WACOM_CINTIQ_PRO16_PEN,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT,
|
||||
.features = LITEST_TABLET | LITEST_DISTANCE | LITEST_TOOL_SERIAL | LITEST_TILT | LITEST_DIRECT,
|
||||
.interface = &interface,
|
||||
|
||||
.name = "Wacom Cintiq Pro 16 Pen",
|
||||
|
|
|
|||
|
|
@ -328,6 +328,7 @@ enum litest_device_feature {
|
|||
LITEST_IGNORED = 1 << 27,
|
||||
LITEST_NO_DEBOUNCE = 1 << 28,
|
||||
LITEST_TOOL_MOUSE = 1 << 29,
|
||||
LITEST_DIRECT = 1 << 30,
|
||||
};
|
||||
|
||||
/* this is a semi-mt device, so we keep track of the touches that the tests
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue