From 8993f5eabbcf0b4e52fe0940bcfb7f34216b3ecc Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Mon, 3 Feb 2025 10:42:42 -0600 Subject: [PATCH] compositor: Drop flow id from weston_view_update_transform This can end up being the first function to touch a surface in a flow, which leads to confusing traces. Just trace the function without a flow instead. Signed-off-by: Derek Foreman --- libweston/compositor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweston/compositor.c b/libweston/compositor.c index 313167710..a08497b6f 100644 --- a/libweston/compositor.c +++ b/libweston/compositor.c @@ -1905,7 +1905,7 @@ weston_view_update_transform_enable(struct weston_view *view) WL_EXPORT void weston_view_update_transform(struct weston_view *view) { - WESTON_TRACE_FUNC_FLOW(&view->surface->flow_id); + WESTON_TRACE_FUNC(); struct weston_view *parent = view->geometry.parent; struct weston_view *child; struct weston_layer *layer;