libweston: Track string cache invalidation with Perfetto

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
This commit is contained in:
Marius Vlad 2026-01-14 14:31:18 +02:00
parent fef407c16c
commit ad8fdde5f6

View file

@ -11015,7 +11015,6 @@ weston_cached_str_get(struct weston_cached_string *s, void *data)
}
s->is_up_to_date = true;
}
return s->cached_str;
}
@ -11028,5 +11027,6 @@ weston_cached_str_get(struct weston_cached_string *s, void *data)
WL_EXPORT void
weston_cached_str_invalidate(struct weston_cached_string *s)
{
WESTON_TRACE_FUNC();
s->is_up_to_date = false;
}