Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/android_stub/log_stub.cpp
4558 views
1
#include <android/log.h>
2
3
extern "C" {
4
5
int __android_log_print(int prio, const char* tag, const char* fmt, ...)
6
{
7
return 0;
8
}
9
10
int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap)
11
{
12
return 0;
13
}
14
15
}
16
17