mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-23 10:48:08 +02:00
Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com> Acked-by: Emma Anholt <emma@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34893>
17 lines
234 B
C
17 lines
234 B
C
/*
|
|
* Copyright 2025 Igalia S.L.
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *util_sysprof_begin(const char *name);
|
|
void util_sysprof_end(void **scope);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|