21 #ifndef ANDROIDPLATFORM_H
22 #define ANDROIDPLATFORM_H
25 #include <android/log.h>
27 #define LOG_TAG __FILE__
29 #define LOGI(format, args...) { fprintf(stderr, format, ##args); __android_log_print(ANDROID_LOG_INFO, LOG_TAG, format, ##args); }
30 #define LOGE(format, args...) { fprintf(stderr, format, ##args); __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, format, ##args); }
31 #define LOGD(format, args...) { fprintf(stderr, format, ##args); __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, format, ##args); }
35 AndroidPlatform::checkGlesError(#x);
57 static bool getAndroidAsset(JNIEnv* JNIEnvironment,
const char destinationDirectory[],
const char filename[]);