mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-08 13:38:40 +02:00
evdev: rename evdev_device_dispatch_one to evdev_device_dispatch_frame
Because it now takes a frame as argument, no longer a single event. Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1244>
This commit is contained in:
parent
f003dbb6cb
commit
e99f0c995e
1 changed files with 2 additions and 2 deletions
|
|
@ -94,7 +94,7 @@ evdev_process_event(struct evdev_device *device,
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
evdev_device_dispatch_one(struct libinput_plugin *plugin,
|
evdev_device_dispatch_frame(struct libinput_plugin *plugin,
|
||||||
struct libinput_device *libinput_device,
|
struct libinput_device *libinput_device,
|
||||||
struct evdev_frame *frame)
|
struct evdev_frame *frame)
|
||||||
{
|
{
|
||||||
|
|
@ -143,7 +143,7 @@ static const struct libinput_plugin_interface interface = {
|
||||||
.device_ignored = NULL,
|
.device_ignored = NULL,
|
||||||
.device_added = evdev_plugin_device_added,
|
.device_added = evdev_plugin_device_added,
|
||||||
.device_removed = NULL,
|
.device_removed = NULL,
|
||||||
.evdev_frame = evdev_device_dispatch_one,
|
.evdev_frame = evdev_device_dispatch_frame,
|
||||||
};
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue