mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 09:20:07 +01:00
This commit introduces build script configuration for building a shared library 'libinput.so' containing the evdev input device functionality from weston. evdev.c, evdev.h and evdev-touchpad.c are ported to not use the data structures and API in weston and libwayland-server in order to minimize dependencies. The API of filter.c and filter.h are renamed to not include the 'weston_' prefix. Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
9 lines
420 B
Text
9 lines
420 B
Text
This library does processing on input device events while providing an API
|
|
to the the user used for delegating more useful input events.
|
|
|
|
Input event processing includes scaling touch coordinates, generating
|
|
pointer events from touchpads, pointer acceleration, etc.
|
|
|
|
It is based on the input code from the weston Wayland reference compositor.
|
|
|
|
It has no other dependencies than libmtdev and supports only evdev devices.
|