diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp index ca505d182b..e19ca66818 100644 --- a/android/jni/com/mapswithme/maps/Framework.cpp +++ b/android/jni/com/mapswithme/maps/Framework.cpp @@ -63,25 +63,32 @@ namespace android m_work.SetRenderPolicy(0); } - void Framework::InitRenderPolicy() + bool Framework::InitRenderPolicy() { LOG(LDEBUG, ("AF::InitRenderer 1")); - DrawerYG::Params params; - params.m_frameBuffer = make_shared_ptr(new yg::gl::FrameBuffer(true)); - yg::ResourceManager::Params rmParams; rmParams.m_videoMemoryLimit = 15 * 1024 * 1024; rmParams.m_rtFormat = yg::Rt8Bpp; - m_work.SetRenderPolicy(new PartialRenderPolicy(m_videoTimer, - params, - rmParams, - make_shared_ptr(new android::RenderContext()))); + RenderPolicy * renderPolicy = new PartialRenderPolicy(m_videoTimer, + true, + rmParams, + make_shared_ptr(new android::RenderContext())); + + if (renderPolicy == 0) + { + LOG(LINFO, ("No Render Policy is created")); + return false; + } + + m_work.SetRenderPolicy(renderPolicy); m_work.SetUpdatesEnabled(true); LOG(LDEBUG, ("AF::InitRenderer 3")); + + return true; } storage::Storage & Framework::Storage() diff --git a/android/jni/com/mapswithme/maps/Framework.hpp b/android/jni/com/mapswithme/maps/Framework.hpp index f2befcefab..d1868aff8a 100644 --- a/android/jni/com/mapswithme/maps/Framework.hpp +++ b/android/jni/com/mapswithme/maps/Framework.hpp @@ -49,7 +49,7 @@ namespace android void Invalidate(); - void InitRenderPolicy(); + bool InitRenderPolicy(); void DeleteRenderPolicy(); void Resize(int w, int h); diff --git a/android/jni/com/mapswithme/maps/Lifecycle.cpp b/android/jni/com/mapswithme/maps/Lifecycle.cpp index df45c4b426..9673eb311d 100644 --- a/android/jni/com/mapswithme/maps/Lifecycle.cpp +++ b/android/jni/com/mapswithme/maps/Lifecycle.cpp @@ -51,13 +51,8 @@ bool SetupGLESResources() if (s_glesLoaded) return true; - NVDEBUG(reinterpret_cast(glGetString(GL_EXTENSIONS))); - NVDEBUG(reinterpret_cast(glGetString(GL_VENDOR))); - NVDEBUG(reinterpret_cast(glGetString(GL_RENDERER))); - NVDEBUG(reinterpret_cast(glGetString(GL_VERSION))); - // NVDEBUG(reinterpret_cast(glGetString(GL_SHADING_LANGUAGE_VERSION))); - - g_framework->InitRenderPolicy(); + if (!g_framework->InitRenderPolicy()) + return false; s_glesLoaded = true; diff --git a/android/jni/com/mapswithme/maps/VideoTimer.cpp b/android/jni/com/mapswithme/maps/VideoTimer.cpp index f12f3c2c70..ac94ffe119 100644 --- a/android/jni/com/mapswithme/maps/VideoTimer.cpp +++ b/android/jni/com/mapswithme/maps/VideoTimer.cpp @@ -34,39 +34,39 @@ namespace android void VideoTimer::start() { - JNIEnv * env; + /*JNIEnv * env; m_javaVM->AttachCurrentThread(&env, NULL); - env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "start", "()V")); + env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "start", "()V"));*/ m_state = ERunning; } void VideoTimer::resume() { - JNIEnv * env; + /*JNIEnv * env; m_javaVM->AttachCurrentThread(&env, NULL); - env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "resume", "()V")); + env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "resume", "()V"));*/ m_state = ERunning; } void VideoTimer::pause() { - JNIEnv * env; + /*JNIEnv * env; m_javaVM->AttachCurrentThread(&env, NULL); - env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "pause", "()V")); + env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "pause", "()V"));*/ m_state = EPaused; } void VideoTimer::stop() { - JNIEnv * env; + /*JNIEnv * env; m_javaVM->AttachCurrentThread(&env, NULL); - env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "stop", "()V")); + env->CallVoidMethod(m_videoTimer, jni::GetJavaMethodID(env, m_videoTimer, "stop", "()V"));*/ m_state = EStopped; } void VideoTimer::perform() { - m_frameFn(); + //m_frameFn(); } }