A complete 3D game development suite written purely in Java.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
jmonkeyengine/jme3-android-native/src/native/jme_openalsoft/util.h

15 lines
283 B

#ifndef JME_UTIL_H
#define JME_UTIL_H
#include <stddef.h>
#include <stdio.h>
#ifndef NDEBUG
#include <android/log.h>
#define LOGI(fmt, ...) __android_log_print(ANDROID_LOG_INFO, \
"OpenALSoft", fmt, ##__VA_ARGS__);
#else
#define LOGI(fmt, ...)
#endif
#endif