From e33f89a4bf77ceac3a09d10d4dbf275a000d028c Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Fri, 25 Jul 2025 09:31:08 -0500 Subject: [PATCH] wayland: window: Name the color management queue Wayland debugging is easier if we use queue names. Part-of: --- .../gst-plugins-bad/gst-libs/gst/wayland/gstwlwindow.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/wayland/gstwlwindow.c b/subprojects/gst-plugins-bad/gst-libs/gst/wayland/gstwlwindow.c index e41d886384..4e99544361 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/wayland/gstwlwindow.c +++ b/subprojects/gst-plugins-bad/gst-libs/gst/wayland/gstwlwindow.c @@ -1028,7 +1028,12 @@ gst_wl_window_set_image_description (GstWlWindow * self, color_manager_wrapper = wl_proxy_create_wrapper (color_manager); wl_display = gst_wl_display_get_display (priv->display); +#ifdef HAVE_WL_EVENT_QUEUE_NAME + color_manager_queue = wl_display_create_queue_with_name (wl_display, + "GStreamer color manager queue"); +#else color_manager_queue = wl_display_create_queue (wl_display); +#endif wl_proxy_set_queue ((struct wl_proxy *) color_manager_wrapper, color_manager_queue);