From 4d755c211718b3b8659173969744ab74179f9057 Mon Sep 17 00:00:00 2001 From: rachytski Date: Sun, 18 Dec 2011 14:30:29 +0400 Subject: [PATCH] [android] fixed bug in drawing "empty model" message. --- android/jni/com/mapswithme/maps/Framework.cpp | 2 +- android/jni/com/mapswithme/maps/Lifecycle.cpp | 29 +++++-------------- map/render_queue_routine.cpp | 23 ++++++++------- map/render_queue_routine.hpp | 2 +- 4 files changed, 22 insertions(+), 34 deletions(-) diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp index 925c934c0c..25fec20818 100644 --- a/android/jni/com/mapswithme/maps/Framework.cpp +++ b/android/jni/com/mapswithme/maps/Framework.cpp @@ -95,11 +95,11 @@ namespace android try { - m_work.LoadState(); m_work.SetRenderPolicy(CreateRenderPolicy(m_videoTimer, true, rmParams, make_shared_ptr(new android::RenderContext()))); + m_work.LoadState(); } catch (yg::gl::platform_unsupported const & e) { diff --git a/android/jni/com/mapswithme/maps/Lifecycle.cpp b/android/jni/com/mapswithme/maps/Lifecycle.cpp index 4eccdcf5d5..ff0bc49f94 100644 --- a/android/jni/com/mapswithme/maps/Lifecycle.cpp +++ b/android/jni/com/mapswithme/maps/Lifecycle.cpp @@ -269,10 +269,7 @@ int32_t NVEventAppMain(int32_t argc, char** argv) // s_glesAutopaused = true; /// need to investigate deeper, whether i could call it only once in a sequence of lifecycle events /* if (g_framework) - { - NVDEBUG("saving state"); - g_framework->SaveState(); - }*/ + g_framework->SaveState();*/ renderFrame(false); break; @@ -280,12 +277,8 @@ int32_t NVEventAppMain(int32_t argc, char** argv) case NV_EVENT_PAUSE: NVDEBUG("Pause event"); -/* /// need to investigate deeper, whether i could call it only once in a sequence of lifecycle events - if (g_framework) - { - NVDEBUG("saving state"); - g_framework->SaveState(); - }*/ +/* if (g_framework) + g_framework->SaveState();*/ //s_glesAutopaused = true; renderFrame(false); @@ -294,12 +287,8 @@ int32_t NVEventAppMain(int32_t argc, char** argv) case NV_EVENT_STOP: NVDEBUG("Stop event"); -/* /// need to investigate deeper, whether i could call it only once in a sequence of lifecycle events - if (g_framework) - { - NVDEBUG("saving state"); - g_framework->SaveState(); - }*/ +/* if (g_framework) + g_framework->SaveState();*/ // As per Google's recommendation, we release GLES resources here ShutdownGLESResources(); @@ -307,12 +296,8 @@ int32_t NVEventAppMain(int32_t argc, char** argv) case NV_EVENT_QUIT: NVDEBUG("Quit event"); -/* /// need to investigate deeper, whether i could call it only once in a sequence of lifecycle events - if (g_framework) - { - NVDEBUG("saving state"); - g_framework->SaveState(); - }*/ +/* if (g_framework) + g_framework->SaveState();*/ break; case NV_EVENT_ACCEL: diff --git a/map/render_queue_routine.cpp b/map/render_queue_routine.cpp index 1b5d43eaa1..1d021add85 100644 --- a/map/render_queue_routine.cpp +++ b/map/render_queue_routine.cpp @@ -140,7 +140,7 @@ void RenderQueueRoutine::processResize(ScreenBase const & frameScreen) } } -void RenderQueueRoutine::getUpdateAreas( +bool RenderQueueRoutine::getUpdateAreas( ScreenBase const & oldScreen, m2::RectI const & oldRect, ScreenBase const & newScreen, @@ -157,11 +157,11 @@ void RenderQueueRoutine::getUpdateAreas( /// checking two corner cases if (o.IsRectInside(n)) - return; + return false; if (!o.IsIntersect(n)) { areas.push_back(newRect); - return; + return true; } double leftBarMinX = 0; @@ -190,6 +190,8 @@ void RenderQueueRoutine::getUpdateAreas( areas.push_back(m2::RectI((int)rightBarMinX, (int)topBarMaxY, (int)rightBarMaxX, (int)bottomBarMaxY)); if ((int)bottomBarMinY != (int)bottomBarMaxY) areas.push_back(m2::RectI((int)leftBarMinX, (int)bottomBarMinY, (int)rightBarMinX, (int)bottomBarMaxY)); + + return false; } else { @@ -228,6 +230,7 @@ void RenderQueueRoutine::getUpdateAreas( areas.push_back(m2::Offset(r, 0 * sx, 1 * sy)); areas.push_back(m2::Offset(r, 0 * sx, 0 * sy)); } + return true; } } @@ -346,13 +349,13 @@ void RenderQueueRoutine::Do() } else { - getUpdateAreas(prevScreen, - prevRect, - m_currentRenderCommand->m_frameScreen, - curRect, - areas); - if ((areas.size() == 1) && (areas[0] == curRect)) - fullRectRepaint = true; + fullRectRepaint = getUpdateAreas(prevScreen, + prevRect, + m_currentRenderCommand->m_frameScreen, + curRect, + areas); +/* if ((areas.size() == 1) && (areas[0] == curRect)) + fullRectRepaint = true;*/ } isPanning = IsPanningAndRotate(prevScreen, m_renderState->m_currentScreen); diff --git a/map/render_queue_routine.hpp b/map/render_queue_routine.hpp index a94bae1eed..a7afd8c0bf 100644 --- a/map/render_queue_routine.hpp +++ b/map/render_queue_routine.hpp @@ -122,7 +122,7 @@ public: /// Check, whether the resize command is queued, and resize accordingly. void processResize(ScreenBase const & frameScreen); /// Get update areas for the current render state - void getUpdateAreas(ScreenBase const & oldScreen, m2::RectI const & oldRect, + bool getUpdateAreas(ScreenBase const & oldScreen, m2::RectI const & oldRect, ScreenBase const & newScreen, m2::RectI const & newRect, vector & areas); /// Thread procedure