mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 05:50:11 +01:00
1. Add tracing headers 2. Update to reflect relocated headers 3. Remove redundant apex/window.h Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org> Reviewed-by: Chia-I Wu <olvaffe@gmail.com> Reviewed-by: Ryan Neph <ryanneph@google.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13255>
32 lines
340 B
C++
32 lines
340 B
C++
#include <cutils/properties.h>
|
|
#include <cutils/trace.h>
|
|
|
|
extern "C" {
|
|
|
|
int
|
|
property_get(const char *key, char *value, const char *default_value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
atrace_begin_body(const char * /*name*/)
|
|
{
|
|
}
|
|
|
|
void
|
|
atrace_end_body()
|
|
{
|
|
}
|
|
|
|
void
|
|
atrace_init()
|
|
{
|
|
}
|
|
|
|
uint64_t
|
|
atrace_get_enabled_tags()
|
|
{
|
|
return ATRACE_TAG_NOT_READY;
|
|
}
|
|
}
|