https://bugzilla.gnome.org/show_bug.cgi?id=762618

Rui Matos <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #8 from Rui Matos <[email protected]> ---
Olivier, can you add the following printfs to clutter and re-post that log?

diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c
index 2c67ca3..5f55190 100644
--- a/clutter/clutter-stage.c
+++ b/clutter/clutter-stage.c
@@ -1034,6 +1034,8 @@ _clutter_stage_process_queued_events (ClutterStage
*stage)
       clutter_event_free (event);
     }

+  fprintf (stderr, "clutter stage events processed\n");
+
   g_list_free (events);

   g_object_unref (stage);
diff --git a/clutter/evdev/clutter-device-manager-evdev.c
b/clutter/evdev/clutter-device-manager-evdev.c
index df9cd19..057aa38 100644
--- a/clutter/evdev/clutter-device-manager-evdev.c
+++ b/clutter/evdev/clutter-device-manager-evdev.c
@@ -295,6 +295,7 @@ static void
 queue_event (ClutterEvent *event)
 {
   _clutter_event_push (event, FALSE);
+  fprintf (stderr, "pushed libinput event\n");
 }

 static void
@@ -916,6 +917,7 @@ clutter_event_dispatch (GSource     *g_source,

       /* forward the event into clutter for emission etc. */
       _clutter_stage_queue_event (event->any.stage, event, FALSE);
+      fprintf (stderr, "_clutter_stage_queue_event()\n");

       /* update the device states *after* the event */
       event_state = seat->button_state |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
wayland-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs

Reply via email to