mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
perfetto: fix perfetto counter following perfetto v46.0
Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30555>
This commit is contained in:
parent
2e2b83f72d
commit
f981cd8e01
1 changed files with 2 additions and 1 deletions
|
|
@ -103,7 +103,8 @@ util_perfetto_trace_full_end(const char *name, uint64_t track_id, uint64_t times
|
|||
void
|
||||
util_perfetto_counter_set(const char *name, double value)
|
||||
{
|
||||
TRACE_COUNTER(UTIL_PERFETTO_CATEGORY_DEFAULT_STR, name, value);
|
||||
TRACE_COUNTER(UTIL_PERFETTO_CATEGORY_DEFAULT_STR,
|
||||
perfetto::DynamicString(name), value);
|
||||
}
|
||||
|
||||
uint64_t
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue