#include <android/log.h>
#include <cstdio>
#include <cstdlib>
#include <GLES3/gl3.h>
#include <string>
#include <vector>
#include <stdint.h>
#include "matrix.h"
Go to the source code of this file.
|
#define | LOG_TAG "libNative" |
|
#define | LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__) |
|
#define | LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__) |
|
#define | LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__) |
|
#define | ASSERT(x, s) |
|
Value:
LOGE(
"Assertion failed at %s:%i\n%s\n", __FILE__, __LINE__, s); \
exit(1); \
}
GLint GLint GLint GLint GLint x
Definition at line 46 of file common.h.
#define LOG_TAG "libNative" |
#define LOGD |
( |
|
... | ) |
__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__) |
#define LOGE |
( |
|
... | ) |
__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__) |
#define LOGI |
( |
|
... | ) |
__android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__) |