[mutter/wip/carlosg/input-thread: 85/159] clutter/main: Drop dead code branches
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/carlosg/input-thread: 85/159] clutter/main: Drop dead code branches
- Date: Wed, 12 Aug 2020 17:24:03 +0000 (UTC)
commit e8649a6fcc0576254a128a144ec39daa9ef26bec
Author: Carlos Garnacho <carlosg gnome org>
Date: Fri Jun 5 18:31:55 2020 +0200
clutter/main: Drop dead code branches
We shouldn't get an input event that has not a device.
clutter/clutter/clutter-main.c | 40 ++++++----------------------------------
1 file changed, 6 insertions(+), 34 deletions(-)
---
diff --git a/clutter/clutter/clutter-main.c b/clutter/clutter/clutter-main.c
index 9d0d314709..66af391c54 100644
--- a/clutter/clutter/clutter-main.c
+++ b/clutter/clutter/clutter-main.c
@@ -1868,25 +1868,9 @@ _clutter_process_event_details (ClutterActor *stage,
break;
}
- /* if the backend provides a device then we should
- * already have everything we need to update it and
- * get the actor underneath
- */
- if (device != NULL)
- {
- actor = clutter_input_device_update (device, NULL,
- CLUTTER_STAGE (stage),
- TRUE);
- }
- else
- {
- CLUTTER_NOTE (EVENT, "No device found: picking");
-
- actor = _clutter_stage_do_pick (CLUTTER_STAGE (stage),
- x, y,
- CLUTTER_PICK_REACTIVE);
- }
-
+ actor = clutter_input_device_update (device, NULL,
+ CLUTTER_STAGE (stage),
+ TRUE);
if (actor == NULL)
break;
@@ -1994,21 +1978,9 @@ _clutter_process_event_details (ClutterActor *stage,
break;
}
- if (device != NULL)
- {
- actor = clutter_input_device_update (device, sequence,
- CLUTTER_STAGE (stage),
- TRUE);
- }
- else
- {
- CLUTTER_NOTE (EVENT, "No device found: picking");
-
- actor = _clutter_stage_do_pick (CLUTTER_STAGE (stage),
- x, y,
- CLUTTER_PICK_REACTIVE);
- }
-
+ actor = clutter_input_device_update (device, sequence,
+ CLUTTER_STAGE (stage),
+ TRUE);
if (actor == NULL)
break;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]