Ticket #16270: mutter-42.0-consolidated_fixes-1.patch
File mutter-42.0-consolidated_fixes-1.patch, 25.4 KB (added by , 3 years ago) |
---|
-
TabularUnified clutter/clutter/cally/cally-stage.c
diff --color -Naur mutter-42.0/clutter/clutter/cally/cally-stage.c mutter-42.0-patched/clutter/clutter/cally/cally-stage.c
old new 39 39 #include "cally-stage.h" 40 40 #include "cally-actor-private.h" 41 41 42 #include "../clutter-stage-private.h" 43 42 44 /* AtkObject.h */ 43 45 static void cally_stage_real_initialize (AtkObject *obj, 44 46 gpointer data); … … 191 193 192 194 stage = CLUTTER_STAGE (CALLY_GET_CLUTTER_ACTOR (obj)); 193 195 196 if (clutter_stage_is_activated (stage)) 197 cally_stage_activate_cb (stage, CALLY_STAGE (obj)); 198 194 199 g_signal_connect (stage, "activate", G_CALLBACK (cally_stage_activate_cb), obj); 195 200 g_signal_connect (stage, "deactivate", G_CALLBACK (cally_stage_deactivate_cb), obj); 196 201 g_signal_connect (stage, "notify::key-focus", -
TabularUnified clutter/clutter/clutter-actor.c
diff --color -Naur mutter-42.0/clutter/clutter/clutter-actor.c mutter-42.0-patched/clutter/clutter/clutter-actor.c
old new 1264 1264 if (CLUTTER_ACTOR_IS_MAPPED (self) == mapped) 1265 1265 return; 1266 1266 1267 g_return_if_fail (!CLUTTER_ACTOR_IN_MAP_UNMAP (self)); 1268 1269 CLUTTER_SET_PRIVATE_FLAGS (self, CLUTTER_IN_MAP_UNMAP); 1270 1267 1271 if (mapped) 1268 1272 { 1269 1273 CLUTTER_ACTOR_GET_CLASS (self)->map (self); … … 1274 1278 CLUTTER_ACTOR_GET_CLASS (self)->unmap (self); 1275 1279 g_assert (!CLUTTER_ACTOR_IS_MAPPED (self)); 1276 1280 } 1281 1282 CLUTTER_UNSET_PRIVATE_FLAGS (self, CLUTTER_IN_MAP_UNMAP); 1277 1283 } 1278 1284 1279 1285 /* this function updates the mapped and realized states according to … … 1695 1701 */ 1696 1702 g_object_notify_by_pspec (G_OBJECT (self), obj_props[PROP_MAPPED]); 1697 1703 1704 if (priv->has_pointer) 1705 { 1706 ClutterActor *stage = _clutter_actor_get_stage_internal (self); 1707 1708 clutter_stage_pointer_actor_unreactive (CLUTTER_STAGE (stage), self); 1709 } 1710 1698 1711 /* relinquish keyboard focus if we were unmapped while owning it */ 1699 1712 if (!CLUTTER_ACTOR_IS_TOPLEVEL (self)) 1700 1713 maybe_unset_key_focus (self); … … 12434 12447 clutter_actor_set_reactive (ClutterActor *actor, 12435 12448 gboolean reactive) 12436 12449 { 12450 ClutterActorPrivate *priv; 12451 12437 12452 g_return_if_fail (CLUTTER_IS_ACTOR (actor)); 12438 12453 12454 priv = actor->priv; 12455 12439 12456 if (reactive == CLUTTER_ACTOR_IS_REACTIVE (actor)) 12440 12457 return; 12441 12458 … … 12445 12462 CLUTTER_ACTOR_UNSET_FLAGS (actor, CLUTTER_ACTOR_REACTIVE); 12446 12463 12447 12464 g_object_notify_by_pspec (G_OBJECT (actor), obj_props[PROP_REACTIVE]); 12465 12466 if (!CLUTTER_ACTOR_IS_REACTIVE (actor) && priv->has_pointer) 12467 { 12468 ClutterActor *stage = _clutter_actor_get_stage_internal (actor); 12469 12470 clutter_stage_pointer_actor_unreactive (CLUTTER_STAGE (stage), actor); 12471 } 12448 12472 } 12449 12473 12450 12474 /** -
TabularUnified clutter/clutter/clutter-event.c
diff --color -Naur mutter-42.0/clutter/clutter/clutter-event.c mutter-42.0-patched/clutter/clutter/clutter-event.c
old new 1772 1772 } 1773 1773 1774 1774 gboolean 1775 _clutter_event_process_filters (ClutterEvent *event) 1775 _clutter_event_process_filters (ClutterEvent *event, 1776 ClutterActor *event_actor) 1776 1777 { 1777 1778 ClutterMainContext *context = _clutter_context_get_default (); 1778 1779 GList *l, *next; … … 1789 1790 if (event_filter->stage && event_filter->stage != event->any.stage) 1790 1791 continue; 1791 1792 1792 if (event_filter->func (event, event_ filter->user_data) == CLUTTER_EVENT_STOP)1793 if (event_filter->func (event, event_actor, event_filter->user_data) == CLUTTER_EVENT_STOP) 1793 1794 return CLUTTER_EVENT_STOP; 1794 1795 } 1795 1796 -
TabularUnified clutter/clutter/clutter-event.h
diff --color -Naur mutter-42.0/clutter/clutter/clutter-event.h mutter-42.0-patched/clutter/clutter/clutter-event.h
old new 615 615 /** 616 616 * ClutterEventFilterFunc: 617 617 * @event: the event that is going to be emitted 618 * @event_actor: the current device actor of the events device 618 619 * @user_data: the data pointer passed to clutter_event_add_filter() 619 620 * 620 621 * A function pointer type used by event filters that are added with … … 628 629 * Since: 1.18 629 630 */ 630 631 typedef gboolean (* ClutterEventFilterFunc) (const ClutterEvent *event, 632 ClutterActor *event_actor, 631 633 gpointer user_data); 632 634 633 635 CLUTTER_EXPORT -
TabularUnified clutter/clutter/clutter-event-private.h
diff --color -Naur mutter-42.0/clutter/clutter/clutter-event-private.h mutter-42.0-patched/clutter/clutter/clutter-event-private.h
old new 14 14 void _clutter_process_event (ClutterEvent *event); 15 15 16 16 CLUTTER_EXPORT 17 gboolean _clutter_event_process_filters (ClutterEvent *event); 17 gboolean _clutter_event_process_filters (ClutterEvent *event, 18 ClutterActor *event_actor); 18 19 19 20 /* clears the event queue inside the main context */ 20 21 void _clutter_clear_events_queue (void); -
TabularUnified clutter/clutter/clutter-input-pointer-a11y.c
diff --color -Naur mutter-42.0/clutter/clutter/clutter-input-pointer-a11y.c mutter-42.0-patched/clutter/clutter/clutter-input-pointer-a11y.c
old new 25 25 26 26 #include "clutter-build-config.h" 27 27 28 #include "clutter-backend-private.h" 28 29 #include "clutter-enum-types.h" 29 30 #include "clutter-input-device.h" 30 31 #include "clutter-input-device-private.h" 31 32 #include "clutter-input-pointer-a11y-private.h" 32 33 #include "clutter-main.h" 34 #include "clutter-private.h" 33 35 #include "clutter-virtual-input-device.h" 34 36 35 37 static gboolean … … 726 728 727 729 return (is_secondary_click_enabled (device) || is_dwell_click_enabled (device)); 728 730 } 731 732 void 733 _clutter_input_pointer_a11y_maybe_handle_event (ClutterEvent *event) 734 { 735 736 ClutterInputDevice *device = clutter_event_get_device (event); 737 ClutterMainContext *clutter_context; 738 ClutterBackend *backend; 739 740 if (!_clutter_is_input_pointer_a11y_enabled (device)) 741 return; 742 743 if ((event->any.flags & CLUTTER_EVENT_FLAG_SYNTHETIC) != 0) 744 return; 745 746 clutter_context = _clutter_context_get_default (); 747 backend = clutter_context->backend; 748 749 if (!clutter_backend_is_display_server (backend)) 750 return; 751 752 if (event->type == CLUTTER_MOTION) 753 { 754 float x, y; 755 756 clutter_event_get_coords (event, &x, &y); 757 _clutter_input_pointer_a11y_on_motion_event (device, x, y); 758 } 759 else if (event->type == CLUTTER_BUTTON_PRESS || 760 event->type == CLUTTER_BUTTON_RELEASE) 761 { 762 _clutter_input_pointer_a11y_on_button_event (device, 763 event->button.button, 764 event->type == CLUTTER_BUTTON_PRESS); 765 } 766 } -
TabularUnified clutter/clutter/clutter-input-pointer-a11y-private.h
diff --color -Naur mutter-42.0/clutter/clutter/clutter-input-pointer-a11y-private.h mutter-42.0-patched/clutter/clutter/clutter-input-pointer-a11y-private.h
old new 42 42 CLUTTER_EXPORT 43 43 gboolean _clutter_is_input_pointer_a11y_enabled (ClutterInputDevice *device); 44 44 45 CLUTTER_EXPORT 46 void _clutter_input_pointer_a11y_maybe_handle_event (ClutterEvent *event); 47 45 48 G_END_DECLS 46 49 47 50 #endif /* __CLUTTER_INPUT_POINTER_A11Y_H__ */ -
TabularUnified clutter/clutter/clutter-main.c
diff --color -Naur mutter-42.0/clutter/clutter/clutter-main.c mutter-42.0-patched/clutter/clutter/clutter-main.c
old new 741 741 void 742 742 clutter_do_event (ClutterEvent *event) 743 743 { 744 ClutterActor *event_actor = NULL; 745 ClutterContext *context = _clutter_context_get_default(); 746 744 747 /* we need the stage for the event */ 745 748 if (event->any.stage == NULL) 746 749 { … … 765 768 break; 766 769 } 767 770 768 if (_clutter_event_process_filters (event)) 769 return; 771 _clutter_input_pointer_a11y_maybe_handle_event (event); 772 773 context->current_event = g_slist_prepend (context->current_event, event); 774 775 if (event->any.type != CLUTTER_DEVICE_ADDED && 776 event->any.type != CLUTTER_DEVICE_REMOVED && 777 event->any.type != CLUTTER_NOTHING && 778 event->any.type != CLUTTER_EVENT_LAST) 779 { 780 event_actor = clutter_stage_get_event_actor (event->any.stage, event); 781 } 782 783 if (_clutter_event_process_filters (event, event_actor)) 784 { 785 context->current_event = 786 g_slist_delete_link (context->current_event, context->current_event); 787 788 return; 789 } 790 791 context->current_event = g_slist_delete_link (context->current_event, context->current_event); 770 792 771 793 /* Instead of processing events when received, we queue them up to 772 794 * handle per-frame before animations, layout, and drawing. … … 810 832 { 811 833 ClutterInputDevice *device = clutter_event_get_device (event); 812 834 ClutterEventSequence *sequence = clutter_event_get_event_sequence (event); 813 ClutterMainContext *clutter_context;814 ClutterBackend *backend;815 835 ClutterActor *target; 816 836 817 clutter_context = _clutter_context_get_default ();818 backend = clutter_context->backend;819 820 837 switch (event->type) 821 838 { 822 839 case CLUTTER_NOTHING: … … 858 875 break; 859 876 860 877 case CLUTTER_MOTION: 861 if (clutter_backend_is_display_server (backend) &&862 !(event->any.flags & CLUTTER_EVENT_FLAG_SYNTHETIC))863 {864 if (_clutter_is_input_pointer_a11y_enabled (device))865 {866 gfloat x, y;867 868 clutter_event_get_coords (event, &x, &y);869 _clutter_input_pointer_a11y_on_motion_event (device, x, y);870 }871 }872 G_GNUC_FALLTHROUGH;873 878 case CLUTTER_BUTTON_PRESS: 874 879 case CLUTTER_BUTTON_RELEASE: 875 if (clutter_backend_is_display_server (backend))876 {877 if (_clutter_is_input_pointer_a11y_enabled (device) && (event->type != CLUTTER_MOTION))878 {879 _clutter_input_pointer_a11y_on_button_event (device,880 event->button.button,881 event->type == CLUTTER_BUTTON_PRESS);882 }883 }884 885 G_GNUC_FALLTHROUGH;886 880 case CLUTTER_SCROLL: 887 881 case CLUTTER_TOUCHPAD_PINCH: 888 882 case CLUTTER_TOUCHPAD_SWIPE: -
TabularUnified clutter/clutter/clutter-private.h
diff --color -Naur mutter-42.0/clutter/clutter/clutter-private.h mutter-42.0-patched/clutter/clutter/clutter-private.h
old new 69 69 #define CLUTTER_ACTOR_IN_PREF_WIDTH(a) ((CLUTTER_PRIVATE_FLAGS (a) & CLUTTER_IN_PREF_WIDTH) != FALSE) 70 70 #define CLUTTER_ACTOR_IN_PREF_HEIGHT(a) ((CLUTTER_PRIVATE_FLAGS (a) & CLUTTER_IN_PREF_HEIGHT) != FALSE) 71 71 #define CLUTTER_ACTOR_IN_PREF_SIZE(a) ((CLUTTER_PRIVATE_FLAGS (a) & (CLUTTER_IN_PREF_HEIGHT|CLUTTER_IN_PREF_WIDTH)) != FALSE) 72 #define CLUTTER_ACTOR_IN_MAP_UNMAP(a) ((CLUTTER_PRIVATE_FLAGS (a) & CLUTTER_IN_MAP_UNMAP) != FALSE) 72 73 73 74 #define CLUTTER_PARAM_READABLE (G_PARAM_READABLE | G_PARAM_STATIC_STRINGS) 74 75 #define CLUTTER_PARAM_WRITABLE (G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS) … … 105 106 106 107 /* Used to avoid recursion */ 107 108 CLUTTER_IN_RELAYOUT = 1 << 7, 109 110 CLUTTER_IN_MAP_UNMAP = 1 << 8, 108 111 } ClutterPrivateFlags; 109 112 110 113 /* -
TabularUnified clutter/clutter/clutter-stage.c
diff --color -Naur mutter-42.0/clutter/clutter/clutter-stage.c mutter-42.0-patched/clutter/clutter/clutter-stage.c
old new 128 128 int update_freeze_count; 129 129 130 130 gboolean pending_finish_queue_redraws; 131 gboolean is_activated; 131 132 132 133 GHashTable *pointer_devices; 133 134 GHashTable *touch_sequences; … … 579 580 static void 580 581 clutter_stage_real_activate (ClutterStage *stage) 581 582 { 583 stage->priv->is_activated = TRUE; 584 582 585 clutter_stage_emit_key_focus_event (stage, TRUE); 583 586 } 584 587 585 588 static void 586 589 clutter_stage_real_deactivate (ClutterStage *stage) 587 590 { 591 stage->priv->is_activated = FALSE; 592 588 593 clutter_stage_emit_key_focus_event (stage, FALSE); 589 594 } 590 595 … … 3150 3155 priv->actor_needs_immediate_relayout = TRUE; 3151 3156 } 3152 3157 3153 static void 3154 on_device_actor_reactive_changed (ClutterActor *actor, 3155 GParamSpec *pspec, 3156 PointerDeviceEntry *entry) 3158 void 3159 clutter_stage_pointer_actor_unreactive (ClutterStage *self, 3160 ClutterActor *actor) 3157 3161 { 3158 ClutterStage *self = entry->stage; 3162 ClutterStagePrivate *priv = self->priv; 3163 GHashTableIter iter; 3164 gpointer value; 3159 3165 3160 g_assert (!clutter_actor_get_reactive (actor)); 3166 if (CLUTTER_ACTOR_IN_DESTRUCTION (self)) 3167 return; 3161 3168 3162 clutter_stage_pick_and_update_device (self, 3163 entry->device, 3164 entry->sequence, 3165 CLUTTER_DEVICE_UPDATE_IGNORE_CACHE | 3166 CLUTTER_DEVICE_UPDATE_EMIT_CROSSING, 3167 entry->coords, 3168 CLUTTER_CURRENT_TIME); 3169 } 3169 g_assert (!clutter_actor_is_mapped (actor) || !clutter_actor_get_reactive (actor)); 3170 3170 3171 static void 3172 on_device_actor_destroyed (ClutterActor *actor, 3173 PointerDeviceEntry *entry) 3174 { 3175 /* Simply unset the current_actor pointer here, there's no need to 3176 * unset has_pointer or to disconnect any signals because the actor 3177 * is gone anyway. 3178 */ 3179 entry->current_actor = NULL; 3180 g_clear_pointer (&entry->clear_area, cairo_region_destroy); 3181 clutter_stage_repick_device (entry->stage, entry->device); 3171 g_hash_table_iter_init (&iter, priv->pointer_devices); 3172 while (g_hash_table_iter_next (&iter, NULL, &value)) 3173 { 3174 PointerDeviceEntry *entry = value; 3175 3176 if (entry->current_actor != actor) 3177 continue; 3178 3179 clutter_stage_pick_and_update_device (self, 3180 entry->device, 3181 NULL, 3182 CLUTTER_DEVICE_UPDATE_IGNORE_CACHE | 3183 CLUTTER_DEVICE_UPDATE_EMIT_CROSSING, 3184 entry->coords, 3185 CLUTTER_CURRENT_TIME); 3186 } 3187 3188 g_hash_table_iter_init (&iter, priv->touch_sequences); 3189 while (g_hash_table_iter_next (&iter, NULL, &value)) 3190 { 3191 PointerDeviceEntry *entry = value; 3192 3193 if (entry->current_actor != actor) 3194 continue; 3195 3196 clutter_stage_pick_and_update_device (self, 3197 entry->device, 3198 entry->sequence, 3199 CLUTTER_DEVICE_UPDATE_IGNORE_CACHE | 3200 CLUTTER_DEVICE_UPDATE_EMIT_CROSSING, 3201 entry->coords, 3202 CLUTTER_CURRENT_TIME); 3203 } 3204 3205 if (actor != CLUTTER_ACTOR (self)) 3206 g_assert (!clutter_actor_has_pointer (actor)); 3182 3207 } 3183 3208 3184 3209 static void 3185 3210 free_pointer_device_entry (PointerDeviceEntry *entry) 3186 3211 { 3187 3212 if (entry->current_actor) 3188 { 3189 ClutterActor *actor = entry->current_actor; 3190 3191 g_signal_handlers_disconnect_by_func (actor, 3192 G_CALLBACK (on_device_actor_reactive_changed), 3193 entry); 3194 g_signal_handlers_disconnect_by_func (actor, 3195 G_CALLBACK (on_device_actor_destroyed), 3196 entry); 3197 3198 _clutter_actor_set_has_pointer (actor, FALSE); 3199 } 3213 _clutter_actor_set_has_pointer (entry->current_actor, FALSE); 3200 3214 3201 3215 g_clear_pointer (&entry->clear_area, cairo_region_destroy); 3202 3216 … … 3240 3254 if (entry->current_actor != actor) 3241 3255 { 3242 3256 if (entry->current_actor) 3243 { 3244 ClutterActor *old_actor = entry->current_actor; 3245 3246 g_signal_handlers_disconnect_by_func (old_actor, 3247 G_CALLBACK (on_device_actor_reactive_changed), 3248 entry); 3249 g_signal_handlers_disconnect_by_func (old_actor, 3250 G_CALLBACK (on_device_actor_destroyed), 3251 entry); 3252 3253 _clutter_actor_set_has_pointer (old_actor, FALSE); 3254 } 3257 _clutter_actor_set_has_pointer (entry->current_actor, FALSE); 3255 3258 3256 3259 entry->current_actor = actor; 3257 3260 3258 3261 if (actor) 3259 { 3260 g_signal_connect (actor, "notify::reactive", 3261 G_CALLBACK (on_device_actor_reactive_changed), entry); 3262 g_signal_connect (actor, "destroy", 3263 G_CALLBACK (on_device_actor_destroyed), entry); 3264 3265 _clutter_actor_set_has_pointer (actor, TRUE); 3266 } 3262 _clutter_actor_set_has_pointer (actor, TRUE); 3267 3263 } 3268 3264 3269 3265 g_clear_pointer (&entry->clear_area, cairo_region_destroy); … … 3478 3474 CLUTTER_EVENT_NONE, 3479 3475 old_actor, new_actor, 3480 3476 point, time_ms); 3481 if (!_clutter_event_process_filters (event ))3477 if (!_clutter_event_process_filters (event, old_actor)) 3482 3478 _clutter_actor_handle_event (old_actor, root, event); 3483 3479 3484 3480 clutter_event_free (event); … … 3492 3488 CLUTTER_EVENT_NONE, 3493 3489 new_actor, old_actor, 3494 3490 point, time_ms); 3495 if (!_clutter_event_process_filters (event ))3491 if (!_clutter_event_process_filters (event, new_actor)) 3496 3492 _clutter_actor_handle_event (new_actor, root, event); 3497 3493 3498 3494 clutter_event_free (event); … … 3676 3672 grab_actor : old_grab_actor, 3677 3673 entry->coords, 3678 3674 CLUTTER_CURRENT_TIME); 3679 if (!_clutter_event_process_filters (event ))3675 if (!_clutter_event_process_filters (event, entry->current_actor)) 3680 3676 _clutter_actor_handle_event (deepmost, topmost, event); 3681 3677 clutter_event_free (event); 3682 3678 } … … 3987 3983 3988 3984 return NULL; 3989 3985 } 3986 3987 gboolean 3988 clutter_stage_is_activated (ClutterStage *stage) 3989 { 3990 g_return_val_if_fail (CLUTTER_IS_STAGE (stage), FALSE); 3991 3992 return stage->priv->is_activated; 3993 } -
TabularUnified clutter/clutter/clutter-stage-private.h
diff --color -Naur mutter-42.0/clutter/clutter/clutter-stage-private.h mutter-42.0-patched/clutter/clutter/clutter-stage-private.h
old new 154 154 void clutter_stage_unlink_grab (ClutterStage *self, 155 155 ClutterGrab *grab); 156 156 157 gboolean clutter_stage_is_activated (ClutterStage *stage); 158 159 void clutter_stage_pointer_actor_unreactive (ClutterStage *self, 160 ClutterActor *actor); 161 157 162 G_END_DECLS 158 163 159 164 #endif /* __CLUTTER_STAGE_PRIVATE_H__ */ -
TabularUnified src/backends/native/meta-stage-native.c
diff --color -Naur mutter-42.0/src/backends/native/meta-stage-native.c mutter-42.0-patched/src/backends/native/meta-stage-native.c
old new 27 27 #include "backends/native/meta-stage-native.h" 28 28 29 29 #include "backends/meta-backend-private.h" 30 #include "backends/meta-stage-private.h" 30 31 #include "backends/native/meta-crtc-virtual.h" 31 32 #include "backends/native/meta-cursor-renderer-native.h" 32 33 #include "backends/native/meta-renderer-native.h" … … 171 172 } 172 173 173 174 static void 175 meta_stage_native_constructed (GObject *object) 176 { 177 MetaStageNative *self = META_STAGE_NATIVE (object); 178 179 G_OBJECT_CLASS (meta_stage_native_parent_class)->constructed (object); 180 181 meta_stage_set_active ((MetaStage *) self->parent.wrapper, TRUE); 182 } 183 184 static void 174 185 meta_stage_native_class_init (MetaStageNativeClass *klass) 175 186 { 187 GObjectClass *object_class = (GObjectClass *) klass; 188 189 object_class->constructed = meta_stage_native_constructed; 190 176 191 quark_view_frame_closure = 177 192 g_quark_from_static_string ("-meta-native-stage-view-frame-closure"); 178 193 } -
TabularUnified src/core/display.c
diff --color -Naur mutter-42.0/src/core/display.c mutter-42.0-patched/src/core/display.c
old new 1436 1436 else 1437 1437 meta_topic (META_DEBUG_FOCUS, "Focus change has no effect, because there is no matching wayland surface"); 1438 1438 1439 meta_stage_set_active (stage, focus_window == NULL);1440 1439 meta_wayland_compositor_set_input_focus (compositor, focus_window); 1441 1440 1442 1441 clutter_stage_repick_device (CLUTTER_STAGE (stage), -
TabularUnified src/core/events.c
diff --color -Naur mutter-42.0/src/core/events.c mutter-42.0-patched/src/core/events.c
old new 81 81 82 82 static MetaWindow * 83 83 get_window_for_event (MetaDisplay *display, 84 const ClutterEvent *event) 84 const ClutterEvent *event, 85 ClutterActor *event_actor) 85 86 { 86 87 switch (display->event_route) 87 88 { 88 89 case META_EVENT_ROUTE_NORMAL: 89 90 { 90 ClutterActor *target;91 91 MetaWindowActor *window_actor; 92 92 93 93 /* Always use the key focused window for key events. */ 94 94 if (IS_KEY_EVENT (event)) 95 95 return stage_has_key_focus () ? display->focus_window : NULL; 96 96 97 target = clutter_stage_get_device_actor (clutter_event_get_stage (event), 98 clutter_event_get_device (event), 99 clutter_event_get_event_sequence (event)); 100 window_actor = meta_window_actor_from_actor (target); 97 window_actor = meta_window_actor_from_actor (event_actor); 101 98 if (window_actor) 102 99 return meta_window_actor_get_meta_window (window_actor); 103 100 else … … 213 210 214 211 static gboolean 215 212 meta_display_handle_event (MetaDisplay *display, 216 const ClutterEvent *event) 213 const ClutterEvent *event, 214 ClutterActor *event_actor) 217 215 { 218 216 MetaBackend *backend = meta_get_backend (); 219 217 MetaWindow *window = NULL; … … 338 336 } 339 337 #endif 340 338 341 window = get_window_for_event (display, event );339 window = get_window_for_event (display, event, event_actor); 342 340 343 341 display->current_time = event->any.time; 344 342 … … 540 538 541 539 static gboolean 542 540 event_callback (const ClutterEvent *event, 541 ClutterActor *event_actor, 543 542 gpointer data) 544 543 { 545 544 MetaDisplay *display = data; 546 545 547 return meta_display_handle_event (display, event );546 return meta_display_handle_event (display, event, event_actor); 548 547 } 549 548 550 549 void -
TabularUnified src/wayland/meta-wayland-surface.c
diff --color -Naur mutter-42.0/src/wayland/meta-wayland-surface.c mutter-42.0-patched/src/wayland/meta-wayland-surface.c
old new 791 791 if ((get_buffer_width (surface) % surface->scale != 0) || 792 792 (get_buffer_height (surface) % surface->scale != 0)) 793 793 { 794 wl_resource_post_error (surface->resource, WL_SURFACE_ERROR_INVALID_SIZE, 795 "Buffer size (%dx%d) must be an integer multiple " 796 "of the buffer_scale (%d)", 797 get_buffer_width (surface), 798 get_buffer_height (surface), surface->scale); 799 goto cleanup; 794 struct wl_resource *resource = surface->resource; 795 pid_t pid; 796 797 wl_client_get_credentials (wl_resource_get_client (resource), &pid, NULL, 798 NULL); 799 800 g_warning ("Bug in client with pid %ld: Buffer size (%dx%d) is not an" 801 "integer multiple of the buffer_scale (%d).", (long) pid, 802 get_buffer_width (surface), get_buffer_height (surface), 803 surface->scale); 800 804 } 801 805 802 806 if (state->has_new_buffer_transform)