mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 01:10:08 +01: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
|
||||
evdev_device_dispatch_one(struct libinput_plugin *plugin,
|
||||
evdev_device_dispatch_frame(struct libinput_plugin *plugin,
|
||||
struct libinput_device *libinput_device,
|
||||
struct evdev_frame *frame)
|
||||
{
|
||||
|
|
@ -143,7 +143,7 @@ static const struct libinput_plugin_interface interface = {
|
|||
.device_ignored = NULL,
|
||||
.device_added = evdev_plugin_device_added,
|
||||
.device_removed = NULL,
|
||||
.evdev_frame = evdev_device_dispatch_one,
|
||||
.evdev_frame = evdev_device_dispatch_frame,
|
||||
};
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue