diff --git a/src/main/cpp/egl/loader.c b/src/main/cpp/egl/loader.c index 5c240db..4da6884 100644 --- a/src/main/cpp/egl/loader.c +++ b/src/main/cpp/egl/loader.c @@ -13,7 +13,6 @@ #define DEBUG 0 void init_target_egl() { - LOG_D("Initializing %s @ %s", RENDERERNAME, __FUNCTION__); EGLDisplay eglDisplay = EGL_NO_DISPLAY; EGLSurface eglSurface = EGL_NO_SURFACE; EGLContext eglContext = EGL_NO_CONTEXT; diff --git a/src/main/cpp/gl/log.h b/src/main/cpp/gl/log.h index cd155d1..60a0fb8 100644 --- a/src/main/cpp/gl/log.h +++ b/src/main/cpp/gl/log.h @@ -7,7 +7,6 @@ #include "mg.h" #define GLOBAL_DEBUG 0 -#define GLOBAL_DEBUG_FORCE_OFF 0 #if GLOBAL_DEBUG_FORCE_OFF #define LOG() {} diff --git a/src/main/cpp/gles/loader.c b/src/main/cpp/gles/loader.c index b3c1b4e..1c7bcb6 100644 --- a/src/main/cpp/gles/loader.c +++ b/src/main/cpp/gles/loader.c @@ -171,11 +171,8 @@ void InitGLESCapabilities() { } void init_target_gles() { - LOG_D("Initializing %s @ %s", RENDERERNAME, __FUNCTION__); - LOG_D("Initializing %s @ gl_state", RENDERERNAME); init_gl_state(); - LOG_D("Initializing %s @ init_gles_func", RENDERERNAME); memset(&g_gles_func, 0, sizeof(g_gles_func)); INIT_GLES_FUNC(glActiveTexture) INIT_GLES_FUNC(glAttachShader) diff --git a/src/main/cpp/main.c b/src/main/cpp/main.c index 7ef70b0..7f61bbb 100644 --- a/src/main/cpp/main.c +++ b/src/main/cpp/main.c @@ -57,8 +57,8 @@ void proc_init() { init_config(); clear_log(); start_log(); + LOG_V("Initializing %s ...", RENDERERNAME); show_copyright(); - LOG_V("Initializing %s @ %s", RENDERERNAME, __FUNCTION__); load_libs(); init_target_egl();