mesa/src/android_stub/log_stub.cpp
Yiwei Zhang 8b7525dd5d
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run
android_stub: purge unused log utils
This commit:
- drops the unused log headers
- updates the header roll script
- drops the unused __android_log_vprint stub

Acked-by: Valentine Burley <valentine.burley@collabora.com>
Reviewed-by: Dhruv Mark Collins <mark@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41254>
2026-05-01 20:23:23 +00:00

15 lines
220 B
C++

#include <android/log.h>
extern "C" {
int __android_log_write(int prio, const char* tag, const char* text)
{
return 0;
}
int __android_log_print(int prio, const char* tag, const char* fmt, ...)
{
return 0;
}
}