struct libinput_event_device_notify *added_device_event;
TRACE_INPUT_BEGIN(notify_added_device);
+ log_debug(device->seat->libinput, "[libinput] notify_added_device\n");
added_device_event = zalloc(sizeof *added_device_event);
struct libinput_event_device_notify *removed_device_event;
TRACE_INPUT_BEGIN(notify_removed_device);
+ log_debug(device->seat->libinput, "[libinput] notify_removed_device\n");
removed_device_event = zalloc(sizeof *removed_device_event);
uint32_t seat_key_count;
TRACE_INPUT_BEGIN(keyboard_notify_key);
+ log_debug(device->seat->libinput, "[libinput] keyboard_notify_key\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_KEYBOARD)) {
TRACE_INPUT_END();
struct libinput_event_pointer *motion_event;
TRACE_INPUT_BEGIN(pointer_notify_motion);
+ log_debug(device->seat->libinput, "[libinput] pointer_notify_motion\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_POINTER)) {
TRACE_INPUT_END();
return;
}
-
+
motion_event = zalloc(sizeof *motion_event);
*motion_event = (struct libinput_event_pointer) {
struct libinput_event_pointer *motion_absolute_event;
TRACE_INPUT_BEGIN(pointer_notify_motion_absolute);
+ log_debug(device->seat->libinput, "[libinput] pointer_notify_motion_absolute\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_POINTER)) {
TRACE_INPUT_END();
int32_t seat_button_count;
TRACE_INPUT_BEGIN(pointer_notify_button);
+ log_debug(device->seat->libinput, "[libinput] pointer_notify_button\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_POINTER)) {
TRACE_INPUT_END();
const struct wheel_v120 zero_v120 = {0};
TRACE_INPUT_BEGIN(pointer_notify_axis);
+ log_debug(device->seat->libinput, "[libinput] pointer_notify_axis\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_POINTER)) {
TRACE_INPUT_END();
struct libinput_event_touch *touch_event;
TRACE_INPUT_BEGIN(touch_notify_touch_down);
+ log_debug(device->seat->libinput, "[libinput] touch_notify_touch_down\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_TOUCH)) {
TRACE_INPUT_END();
struct libinput_event_touch *touch_event;
TRACE_INPUT_BEGIN(touch_notify_touch_motion);
+ log_debug(device->seat->libinput, "[libinput] touch_notify_touch_motion\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_TOUCH)) {
TRACE_INPUT_END();
struct libinput_event_touch *touch_event;
TRACE_INPUT_BEGIN(touch_notify_touch_up);
+ log_debug(device->seat->libinput, "[libinput] touch_notify_touch_up\n");
if (!device_has_cap(device, LIBINPUT_DEVICE_CAP_TOUCH)) {
TRACE_INPUT_END();
struct libinput_event_touch_aux_data *touch_aux_data_event;
TRACE_INPUT_BEGIN(touch_notify_aux_data);
+ log_debug(device->seat->libinput, "[libinput] touch_notify_aux_data\n");
touch_aux_data_event = zalloc(sizeof *touch_aux_data_event);
if (!touch_aux_data_event) {