diff --git a/android/jni/com/mapswithme/maps/DownloadUI.cpp b/android/jni/com/mapswithme/maps/DownloadUI.cpp index 0a9cfb1eb4..db57e9570f 100644 --- a/android/jni/com/mapswithme/maps/DownloadUI.cpp +++ b/android/jni/com/mapswithme/maps/DownloadUI.cpp @@ -47,6 +47,14 @@ extern "C" JNIEXPORT void JNICALL Java_com_mapswithme_maps_DownloadUI_nativeCreate(JNIEnv * env, jobject thiz) { + if (g_downloadUI) + { + /// activity has been killed without onDestroy, destroying manually + g_framework->Storage().Unsubscribe(); + delete g_downloadUI; + g_downloadUI = 0; + } + g_downloadUI = new android::DownloadUI(thiz); g_framework->Storage().Subscribe(bind(&android::DownloadUI::OnChangeCountry, g_downloadUI, _1), bind(&android::DownloadUI::OnProgress, g_downloadUI, _1, _2)); @@ -57,6 +65,7 @@ extern "C" { g_framework->Storage().Unsubscribe(); delete g_downloadUI; + g_downloadUI = 0; } JNIEXPORT jint JNICALL diff --git a/base/resource_pool.hpp b/base/resource_pool.hpp index 47070be41c..7f6d4e04ea 100644 --- a/base/resource_pool.hpp +++ b/base/resource_pool.hpp @@ -26,7 +26,9 @@ struct BasePoolTraits BasePoolTraits(TElemFactory const & factory) : m_factory(factory) - {} + { + m_pool.SetName(factory.ResName()); + } void Free(TElem const & elem) { diff --git a/base/threaded_list.hpp b/base/threaded_list.hpp index d078fdb5c5..c0be1e412d 100644 --- a/base/threaded_list.hpp +++ b/base/threaded_list.hpp @@ -1,6 +1,7 @@ #pragma once #include "condition.hpp" +#include "logging.hpp" #include "../std/list.hpp" #include "threaded_container.hpp" @@ -11,6 +12,7 @@ class ThreadedList : public ThreadedContainer private: list m_list; + string m_resName; public: @@ -53,12 +55,24 @@ public: m_Cond.Signal(); } + void SetName(char const * name) + { + m_resName = name; + } + bool WaitNonEmpty() { double StartWaitTime = m_Timer.ElapsedSeconds(); + bool firstWait = true; + while (m_list.empty()) { + if (firstWait) + { + LOG(LINFO, ("waiting for the list of ", m_resName, " to become non-empty")); + firstWait = false; + } if (IsCancelled()) break; m_Cond.Wait(); diff --git a/map/partial_render_policy.cpp b/map/partial_render_policy.cpp index baea683278..fd72813f9b 100644 --- a/map/partial_render_policy.cpp +++ b/map/partial_render_policy.cpp @@ -53,15 +53,15 @@ PartialRenderPolicy::PartialRenderPolicy(VideoTimer * videoTimer, 1, "blitStorage"); - rmp.m_tinyStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), - sizeof(yg::gl::Vertex), - 600 * sizeof(unsigned short), - sizeof(unsigned short), - 20, - true, - true, - 1, - "tinyStorage"); + rmp.m_guiThreadStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), + sizeof(yg::gl::Vertex), + 600 * sizeof(unsigned short), + sizeof(unsigned short), + 20, + true, + true, + 1, + "guiThreadStorage"); rmp.m_primaryTexturesParams = yg::ResourceManager::TexturePoolParams(512, 256, @@ -83,6 +83,16 @@ PartialRenderPolicy::PartialRenderPolicy(VideoTimer * videoTimer, 1, "fontTextures"); + rmp.m_guiThreadTexturesParams = yg::ResourceManager::TexturePoolParams(256, + 128, + 4, + rmp.m_texFormat, + true, + true, + true, + 1, + "guiThreadTexture"); + rmp.m_glyphCacheParams = yg::ResourceManager::GlyphCacheParams("unicode_blocks.txt", "fonts_whitelist.txt", "fonts_blacklist.txt", @@ -111,7 +121,7 @@ PartialRenderPolicy::PartialRenderPolicy(VideoTimer * videoTimer, p.m_skinName = GetPlatform().SkinName(); p.m_visualScale = GetPlatform().VisualScale(); p.m_isSynchronized = false; - p.m_useTinyStorage = true; + p.m_useGuiResources = true; m_drawer.reset(new DrawerYG(p)); @@ -132,6 +142,8 @@ PartialRenderPolicy::PartialRenderPolicy(VideoTimer * videoTimer, m_renderQueue->AddWindowHandle(m_windowHandle); + m_glQueue.SetName("glCommands"); + m_renderQueue->SetGLQueue(&m_glQueue, &m_glCondition); } diff --git a/map/render_policy_mt.cpp b/map/render_policy_mt.cpp index 33993cd1c4..e0cc654dc2 100644 --- a/map/render_policy_mt.cpp +++ b/map/render_policy_mt.cpp @@ -52,7 +52,7 @@ RenderPolicyMT::RenderPolicyMT(VideoTimer * videoTimer, 1, "blitStorage"); - rmp.m_tinyStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), + rmp.m_guiThreadStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), sizeof(yg::gl::Vertex), 600 * sizeof(unsigned short), sizeof(unsigned short), @@ -60,7 +60,7 @@ RenderPolicyMT::RenderPolicyMT(VideoTimer * videoTimer, true, true, 1, - "tinyStorage"); + "guiThreadStorage"); rmp.m_primaryTexturesParams = yg::ResourceManager::TexturePoolParams(512, 256, @@ -82,6 +82,16 @@ RenderPolicyMT::RenderPolicyMT(VideoTimer * videoTimer, 1, "fontTexture"); + rmp.m_guiThreadTexturesParams = yg::ResourceManager::TexturePoolParams(256, + 128, + 4, + rmp.m_texFormat, + true, + true, + true, + 1, + "guiThreadTexture"); + rmp.m_glyphCacheParams = yg::ResourceManager::GlyphCacheParams("unicode_blocks.txt", "fonts_whitelist.txt", "fonts_blacklist.txt", @@ -110,7 +120,7 @@ RenderPolicyMT::RenderPolicyMT(VideoTimer * videoTimer, p.m_skinName = GetPlatform().SkinName(); p.m_visualScale = GetPlatform().VisualScale(); p.m_isSynchronized = false; - p.m_useTinyStorage = true; + p.m_useGuiResources = true; m_drawer.reset(new DrawerYG(p)); diff --git a/map/tiling_render_policy_mt.cpp b/map/tiling_render_policy_mt.cpp index 616a1c2c0e..c62b5937ef 100644 --- a/map/tiling_render_policy_mt.cpp +++ b/map/tiling_render_policy_mt.cpp @@ -62,15 +62,15 @@ TilingRenderPolicyMT::TilingRenderPolicyMT(VideoTimer * videoTimer, 1, "multiBlitStorage"); - rmp.m_tinyStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), - sizeof(yg::gl::Vertex), - 600 * sizeof(unsigned short), - sizeof(unsigned short), - 20, - true, - true, - 1, - "tinyStorage"); + rmp.m_guiThreadStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), + sizeof(yg::gl::Vertex), + 600 * sizeof(unsigned short), + sizeof(unsigned short), + 20, + true, + true, + 1, + "guiThreadStorage"); rmp.m_primaryTexturesParams = yg::ResourceManager::TexturePoolParams(512, 256, @@ -112,6 +112,16 @@ TilingRenderPolicyMT::TilingRenderPolicyMT(VideoTimer * videoTimer, 1, "styleCacheTexture"); + rmp.m_guiThreadTexturesParams = yg::ResourceManager::TexturePoolParams(256, + 128, + 4, + rmp.m_texFormat, + true, + true, + true, + 1, + "guiThreadTexture"); + rmp.m_glyphCacheParams = yg::ResourceManager::GlyphCacheParams("unicode_blocks.txt", "fonts_whitelist.txt", "fonts_blacklist.txt", @@ -137,7 +147,7 @@ TilingRenderPolicyMT::TilingRenderPolicyMT(VideoTimer * videoTimer, p.m_glyphCacheID = m_resourceManager->guiThreadGlyphCacheID(); p.m_skinName = GetPlatform().SkinName(); p.m_visualScale = GetPlatform().VisualScale(); - p.m_useTinyStorage = true; + p.m_useGuiResources = true; p.m_isSynchronized = false; m_drawer.reset(new DrawerYG(p)); diff --git a/map/tiling_render_policy_st.cpp b/map/tiling_render_policy_st.cpp index b16b187ee3..39e515b4bf 100644 --- a/map/tiling_render_policy_st.cpp +++ b/map/tiling_render_policy_st.cpp @@ -64,7 +64,7 @@ TilingRenderPolicyST::TilingRenderPolicyST(VideoTimer * videoTimer, 1, "multiBlitStorage"); - rmp.m_tinyStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), + rmp.m_guiThreadStoragesParams = yg::ResourceManager::StoragePoolParams(300 * sizeof(yg::gl::Vertex), sizeof(yg::gl::Vertex), 600 * sizeof(unsigned short), sizeof(unsigned short), @@ -72,7 +72,7 @@ TilingRenderPolicyST::TilingRenderPolicyST(VideoTimer * videoTimer, true, true, 1, - "tinyStorage"); + "guiThreadStorage"); rmp.m_primaryTexturesParams = yg::ResourceManager::TexturePoolParams(512, 256, @@ -104,6 +104,16 @@ TilingRenderPolicyST::TilingRenderPolicyST(VideoTimer * videoTimer, 5, "renderTargetTexture"); + rmp.m_guiThreadTexturesParams = yg::ResourceManager::TexturePoolParams(256, + 128, + 4, + rmp.m_texFormat, + true, + true, + true, + 1, + "guiThreadTexture"); + rmp.m_glyphCacheParams = yg::ResourceManager::GlyphCacheParams("unicode_blocks.txt", "fonts_whitelist.txt", "fonts_blacklist.txt", @@ -131,7 +141,7 @@ TilingRenderPolicyST::TilingRenderPolicyST(VideoTimer * videoTimer, p.m_skinName = GetPlatform().SkinName(); p.m_visualScale = GetPlatform().VisualScale(); p.m_isSynchronized = true; - p.m_useTinyStorage = true; + p.m_useGuiResources = true; m_drawer.reset(new DrawerYG(p)); diff --git a/yg/geometry_batcher.cpp b/yg/geometry_batcher.cpp index de1c0f55f2..2900b22a17 100644 --- a/yg/geometry_batcher.cpp +++ b/yg/geometry_batcher.cpp @@ -24,14 +24,14 @@ namespace yg { GeometryBatcher::Params::Params() : m_isSynchronized(true), - m_useTinyStorage(false) + m_useGuiResources(false) {} GeometryBatcher::GeometryBatcher(Params const & params) : base_t(params), m_isAntiAliased(true), m_isSynchronized(params.m_isSynchronized), - m_useTinyStorage(params.m_useTinyStorage) + m_useGuiResources(params.m_useGuiResources) { reset(-1); base_t::applyStates(m_isAntiAliased); @@ -47,7 +47,8 @@ namespace yg { discardPipeline(i); freeStorage(i); - freeTexture(i); + if (m_skin->getPage(i)->type() != SkinPage::EStatic) + freeTexture(i); } } @@ -67,11 +68,25 @@ namespace yg { if (!m_hasStorage) { - if (m_useTinyStorage) - m_storage = resourceManager->tinyStorages()->Reserve(); + if (m_useGuiResources) + m_storage = resourceManager->guiThreadStorages()->Reserve(); else - m_storage = m_usage != SkinPage::EStaticUsage ? resourceManager->primaryStorages()->Reserve() - : resourceManager->smallStorages()->Reserve(); + { + switch (m_type) + { + case SkinPage::EPrimary: + m_storage = resourceManager->primaryStorages()->Reserve(); + break; + case SkinPage::EFonts: + m_storage = resourceManager->smallStorages()->Reserve(); + break; + case SkinPage::EStatic: + m_storage = resourceManager->smallStorages()->Reserve(); + break; + default: + LOG(LERROR, ("invalid storage type in checkStorage")); + } + } m_maxVertices = m_storage.m_vertices->size() / sizeof(Vertex); m_maxIndices = m_storage.m_indices->size() / sizeof(unsigned short); @@ -105,13 +120,24 @@ namespace yg { freeStorage->m_storage = pipeline.m_storage; - if (pipeline.m_useTinyStorage) - freeStorage->m_storagePool = resourceManager()->tinyStorages(); + if (pipeline.m_useGuiResources) + freeStorage->m_storagePool = resourceManager()->guiThreadStorages(); else - if (pipeline.m_usage != SkinPage::EStaticUsage) + switch (pipeline.m_type) + { + case SkinPage::EPrimary: freeStorage->m_storagePool = resourceManager()->primaryStorages(); - else + break; + case SkinPage::EFonts: freeStorage->m_storagePool = resourceManager()->smallStorages(); + break; + case SkinPage::EStatic: + freeStorage->m_storagePool = resourceManager()->smallStorages(); + break; + default: + LOG(LERROR, ("invalid pipeline type in freeStorage")); + break; + } pipeline.m_hasStorage = false; pipeline.m_storage = Storage(); @@ -136,12 +162,12 @@ namespace yg for (size_t i = 0; i < 1; ++i) { - m_pipelines[i + pagesCount].m_useTinyStorage = m_useTinyStorage; + m_pipelines[i + pagesCount].m_useGuiResources = m_useGuiResources; m_pipelines[i + pagesCount].m_currentVertex = 0; m_pipelines[i + pagesCount].m_currentIndex = 0; m_pipelines[i + pagesCount].m_hasStorage = false; - m_pipelines[i + pagesCount].m_usage = p->usage(); + m_pipelines[i + pagesCount].m_type = p->type(); m_pipelines[i + pagesCount].m_maxVertices = 0; m_pipelines[i + pagesCount].m_maxIndices = 0; @@ -173,6 +199,12 @@ namespace yg m_skin = skin; if (m_skin != 0) { + /// settings proper skin page type according to useGuiResources flag + if (m_useGuiResources) + for (size_t i = 0; i < m_skin->getPagesCount(); ++i) + if (m_skin->getPage(i)->type() != SkinPage::EStatic) + m_skin->getPage(i)->setType(SkinPage::ELightWeight); + m_pipelines.resize(m_skin->getPagesCount()); m_skin->addOverflowFn(bind(&GeometryBatcher::flush, this, _1), 100); @@ -182,12 +214,12 @@ namespace yg for (size_t i = 0; i < m_pipelines.size(); ++i) { - m_pipelines[i].m_useTinyStorage = m_useTinyStorage; + m_pipelines[i].m_useGuiResources = m_useGuiResources; m_pipelines[i].m_currentVertex = 0; m_pipelines[i].m_currentIndex = 0; m_pipelines[i].m_hasStorage = false; - m_pipelines[i].m_usage = skin->getPage(i)->usage(); + m_pipelines[i].m_type = skin->getPage(i)->type(); m_pipelines[i].m_maxVertices = 0; m_pipelines[i].m_maxIndices = 0; @@ -306,16 +338,19 @@ namespace yg freeTexCmd->m_texture = m_skin->getPage(pipelineID)->texture(); - switch (m_skin->getPage(pipelineID)->usage()) + switch (m_skin->getPage(pipelineID)->type()) { - case SkinPage::EDynamicUsage: + case SkinPage::EPrimary: freeTexCmd->m_texturePool = resourceManager()->primaryTextures(); break; - case SkinPage::EFontsUsage: + case SkinPage::EFonts: freeTexCmd->m_texturePool = resourceManager()->fontTextures(); break; - case SkinPage::EStaticUsage: - LOG(LWARNING, ("texture with EStaticUsage can't be freed.")); + case SkinPage::ELightWeight: + freeTexCmd->m_texturePool = resourceManager()->guiThreadTextures(); + break; + case SkinPage::EStatic: + LOG(LWARNING, ("texture with EStatic can't be freed.")); return; } diff --git a/yg/geometry_batcher.hpp b/yg/geometry_batcher.hpp index 19fef0c522..ceb7f3178d 100644 --- a/yg/geometry_batcher.hpp +++ b/yg/geometry_batcher.hpp @@ -62,8 +62,8 @@ namespace yg mutable unsigned short * m_indices; /// @} - bool m_useTinyStorage; - yg::SkinPage::EUsage m_usage; + bool m_useGuiResources; + yg::SkinPage::EType m_type; size_t verticesLeft(); size_t indicesLeft(); @@ -80,7 +80,7 @@ namespace yg bool m_isAntiAliased; bool m_isSynchronized; - bool m_useTinyStorage; + bool m_useGuiResources; int m_aaShift; @@ -125,7 +125,7 @@ namespace yg struct Params : public base_t::Params { bool m_isSynchronized; - bool m_useTinyStorage; + bool m_useGuiResources; Params(); }; diff --git a/yg/resource_manager.cpp b/yg/resource_manager.cpp index f50d227f58..e851b7aa5c 100644 --- a/yg/resource_manager.cpp +++ b/yg/resource_manager.cpp @@ -337,11 +337,12 @@ namespace yg m_smallStoragesParams("smallStorage"), m_blitStoragesParams("blitStorage"), m_multiBlitStoragesParams("multiBlitStorage"), - m_tinyStoragesParams("tinyStorage"), + m_guiThreadStoragesParams("tinyStorage"), m_primaryTexturesParams("primaryTexture"), m_fontTexturesParams("fontTexture"), m_renderTargetTexturesParams("renderTargetTexture"), - m_styleCacheTexturesParams("styleCacheTexture") + m_styleCacheTexturesParams("styleCacheTexture"), + m_guiThreadTexturesParams("guiThreadTexture") {} void ResourceManager::Params::fitIntoLimits() @@ -378,11 +379,12 @@ namespace yg + m_smallStoragesParams.memoryUsage() + m_blitStoragesParams.memoryUsage() + m_multiBlitStoragesParams.memoryUsage() - + m_tinyStoragesParams.memoryUsage() + + m_guiThreadStoragesParams.memoryUsage() + m_primaryTexturesParams.memoryUsage() + m_fontTexturesParams.memoryUsage() + m_renderTargetTexturesParams.memoryUsage() - + m_styleCacheTexturesParams.memoryUsage(); + + m_styleCacheTexturesParams.memoryUsage() + + m_guiThreadTexturesParams.memoryUsage(); } int ResourceManager::Params::fixedMemoryUsage() const @@ -391,11 +393,12 @@ namespace yg + (m_smallStoragesParams.isFixed() ? m_smallStoragesParams.memoryUsage() : 0) + (m_blitStoragesParams.isFixed() ? m_blitStoragesParams.memoryUsage() : 0) + (m_multiBlitStoragesParams.isFixed() ? m_multiBlitStoragesParams.memoryUsage() : 0) - + (m_tinyStoragesParams.isFixed() ? m_tinyStoragesParams.memoryUsage() : 0) + + (m_guiThreadStoragesParams.isFixed() ? m_guiThreadStoragesParams.memoryUsage() : 0) + (m_primaryTexturesParams.isFixed() ? m_primaryTexturesParams.memoryUsage() : 0) + (m_fontTexturesParams.isFixed() ? m_fontTexturesParams.memoryUsage() : 0) + (m_renderTargetTexturesParams.isFixed() ? m_renderTargetTexturesParams.memoryUsage() : 0) - + (m_styleCacheTexturesParams.isFixed() ? m_styleCacheTexturesParams.memoryUsage() : 0); + + (m_styleCacheTexturesParams.isFixed() ? m_styleCacheTexturesParams.memoryUsage() : 0) + + (m_guiThreadTexturesParams.isFixed() ? m_guiThreadTexturesParams.memoryUsage() : 0); } void ResourceManager::Params::distributeFreeMemory(int freeVideoMemory) @@ -404,12 +407,13 @@ namespace yg m_smallStoragesParams.distributeFreeMemory(freeVideoMemory); m_blitStoragesParams.distributeFreeMemory(freeVideoMemory); m_multiBlitStoragesParams.distributeFreeMemory(freeVideoMemory); - m_tinyStoragesParams.distributeFreeMemory(freeVideoMemory); + m_guiThreadStoragesParams.distributeFreeMemory(freeVideoMemory); m_primaryTexturesParams.distributeFreeMemory(freeVideoMemory); m_fontTexturesParams.distributeFreeMemory(freeVideoMemory); m_renderTargetTexturesParams.distributeFreeMemory(freeVideoMemory); m_styleCacheTexturesParams.distributeFreeMemory(freeVideoMemory); + m_guiThreadTexturesParams.distributeFreeMemory(freeVideoMemory); } ResourceManager::ResourceManager(Params const & p) @@ -421,12 +425,13 @@ namespace yg initStoragePool(p.m_smallStoragesParams, m_smallStorages); initStoragePool(p.m_blitStoragesParams, m_blitStorages); initStoragePool(p.m_multiBlitStoragesParams, m_multiBlitStorages); - initStoragePool(p.m_tinyStoragesParams, m_tinyStorages); + initStoragePool(p.m_guiThreadStoragesParams, m_guiThreadStorages); initTexturePool(p.m_primaryTexturesParams, m_primaryTextures); initTexturePool(p.m_fontTexturesParams, m_fontTextures); initTexturePool(p.m_renderTargetTexturesParams, m_renderTargets); initTexturePool(p.m_styleCacheTexturesParams, m_styleCacheTextures); + initTexturePool(p.m_guiThreadTexturesParams, m_guiThreadTextures); if (p.m_useVA) LOG(LINFO, ("buffer objects are unsupported. using client vertex array instead.")); @@ -438,11 +443,12 @@ namespace yg + (m_smallStoragesParams.isFixed() ? 0 : m_smallStoragesParams.m_scalePriority) + (m_blitStoragesParams.isFixed() ? 0 : m_blitStoragesParams.m_scalePriority) + (m_multiBlitStoragesParams.isFixed() ? 0 : m_multiBlitStoragesParams.m_scalePriority) - + (m_tinyStoragesParams.isFixed() ? 0 : m_tinyStoragesParams.m_scalePriority) + + (m_guiThreadStoragesParams.isFixed() ? 0 : m_guiThreadStoragesParams.m_scalePriority) + (m_primaryTexturesParams.isFixed() ? 0 : m_primaryTexturesParams.m_scalePriority) + (m_fontTexturesParams.isFixed() ? 0 : m_fontTexturesParams.m_scalePriority) + (m_renderTargetTexturesParams.isFixed() ? 0 : m_renderTargetTexturesParams.m_scalePriority) - + (m_styleCacheTexturesParams.isFixed() ? 0 : m_styleCacheTexturesParams.m_scalePriority); + + (m_styleCacheTexturesParams.isFixed() ? 0 : m_styleCacheTexturesParams.m_scalePriority) + + (m_guiThreadTexturesParams.isFixed() ? 0 : m_guiThreadTexturesParams.m_scalePriority); if (prioritySum == 0) return; @@ -451,11 +457,12 @@ namespace yg m_smallStoragesParams.m_scaleFactor = m_smallStoragesParams.m_scalePriority / prioritySum; m_blitStoragesParams.m_scaleFactor = m_blitStoragesParams.m_scalePriority / prioritySum; m_multiBlitStoragesParams.m_scaleFactor = m_multiBlitStoragesParams.m_scalePriority / prioritySum; - m_tinyStoragesParams.m_scaleFactor = m_tinyStoragesParams.m_scalePriority / prioritySum; + m_guiThreadStoragesParams.m_scaleFactor = m_guiThreadStoragesParams.m_scalePriority / prioritySum; m_primaryTexturesParams.m_scaleFactor = m_primaryTexturesParams.m_scalePriority / prioritySum; m_fontTexturesParams.m_scaleFactor = m_fontTexturesParams.m_scalePriority / prioritySum; m_renderTargetTexturesParams.m_scaleFactor = m_renderTargetTexturesParams.m_scalePriority / prioritySum; m_styleCacheTexturesParams.m_scaleFactor = m_styleCacheTexturesParams.m_scalePriority / prioritySum; + m_guiThreadTexturesParams.m_scaleFactor = m_guiThreadTexturesParams.m_scalePriority / prioritySum; } void ResourceManager::initGlyphCaches(GlyphCacheParams const & p) @@ -565,8 +572,8 @@ namespace yg if (m_multiBlitStorages.get()) m_multiBlitStorages->EnterBackground(); - if (m_tinyStorages.get()) - m_tinyStorages->EnterBackground(); + if (m_guiThreadStorages.get()) + m_guiThreadStorages->EnterBackground(); if (m_primaryTextures.get()) m_primaryTextures->EnterBackground(); @@ -579,6 +586,9 @@ namespace yg if (m_styleCacheTextures.get()) m_styleCacheTextures->EnterBackground(); + + if (m_guiThreadTextures.get()) + m_guiThreadTextures->EnterBackground(); } void ResourceManager::enterForeground() @@ -597,8 +607,8 @@ namespace yg if (m_multiBlitStorages.get()) m_multiBlitStorages->EnterForeground(); - if (m_tinyStorages.get()) - m_tinyStorages->EnterForeground(); + if (m_guiThreadStorages.get()) + m_guiThreadStorages->EnterForeground(); if (m_primaryTextures.get()) m_primaryTextures->EnterForeground(); @@ -611,6 +621,9 @@ namespace yg if (m_styleCacheTextures.get()) m_styleCacheTextures->EnterForeground(); + + if (m_guiThreadTextures.get()) + m_guiThreadTextures->EnterForeground(); } shared_ptr ResourceManager::createRenderTarget(unsigned w, unsigned h) @@ -652,9 +665,9 @@ namespace yg return m_smallStorages.get(); } - ResourceManager::TStoragePool * ResourceManager::tinyStorages() + ResourceManager::TStoragePool * ResourceManager::guiThreadStorages() { - return m_tinyStorages.get(); + return m_guiThreadStorages.get(); } ResourceManager::TStoragePool * ResourceManager::blitStorages() @@ -687,10 +700,15 @@ namespace yg return m_styleCacheTextures.get(); } + ResourceManager::TTexturePool * ResourceManager::guiThreadTextures() + { + return m_guiThreadTextures.get(); + } + void ResourceManager::mergeFreeResources() { - if (m_tinyStorages.get()) - m_tinyStorages->Merge(); + if (m_guiThreadStorages.get()) + m_guiThreadStorages->Merge(); if (m_primaryStorages.get()) m_primaryStorages->Merge(); if (m_smallStorages.get()) diff --git a/yg/resource_manager.hpp b/yg/resource_manager.hpp index b8c0e4aef2..3958d688a4 100644 --- a/yg/resource_manager.hpp +++ b/yg/resource_manager.hpp @@ -177,7 +177,7 @@ namespace yg StoragePoolParams m_smallStoragesParams; StoragePoolParams m_blitStoragesParams; StoragePoolParams m_multiBlitStoragesParams; - StoragePoolParams m_tinyStoragesParams; + StoragePoolParams m_guiThreadStoragesParams; /// textures params @@ -185,6 +185,7 @@ namespace yg TexturePoolParams m_fontTexturesParams; TexturePoolParams m_renderTargetTexturesParams; TexturePoolParams m_styleCacheTexturesParams; + TexturePoolParams m_guiThreadTexturesParams; /// glyph caches params @@ -211,12 +212,13 @@ namespace yg auto_ptr m_fontTextures; auto_ptr m_styleCacheTextures; auto_ptr m_renderTargets; + auto_ptr m_guiThreadTextures; auto_ptr m_primaryStorages; auto_ptr m_smallStorages; auto_ptr m_blitStorages; auto_ptr m_multiBlitStorages; - auto_ptr m_tinyStorages; + auto_ptr m_guiThreadStorages; vector m_glyphCaches; @@ -234,7 +236,7 @@ namespace yg TStoragePool * smallStorages(); TStoragePool * blitStorages(); TStoragePool * multiBlitStorages(); - TStoragePool * tinyStorages(); + TStoragePool * guiThreadStorages(); void initTexturePool(TexturePoolParams const & p, auto_ptr & pool); @@ -242,6 +244,7 @@ namespace yg TTexturePool * fontTextures(); TTexturePool * renderTargetTextures(); TTexturePool * styleCacheTextures(); + TTexturePool * guiThreadTextures(); shared_ptr const & getTexture(string const & fileName); diff --git a/yg/skin.cpp b/yg/skin.cpp index 2f0c68ef5f..ac150576a1 100644 --- a/yg/skin.cpp +++ b/yg/skin.cpp @@ -42,7 +42,7 @@ namespace yg for (int i = 0; i < count; ++i) { uint8_t pipelineID = (uint8_t)m_pages.size(); - m_pages.push_back(make_shared_ptr(new SkinPage(m_resourceManager, SkinPage::EFontsUsage, pipelineID))); + m_pages.push_back(make_shared_ptr(new SkinPage(m_resourceManager, SkinPage::EFonts, pipelineID))); m_pages.back()->addOverflowFn(bind(&Skin::onTextOverflow, this, pipelineID), 0); } } @@ -56,7 +56,7 @@ namespace yg for (int i = 0; i < count; ++i) { uint8_t pipelineID = (uint8_t)m_pages.size(); - m_pages.push_back(make_shared_ptr(new SkinPage(m_resourceManager, SkinPage::EDynamicUsage, pipelineID))); + m_pages.push_back(make_shared_ptr(new SkinPage(m_resourceManager, SkinPage::EPrimary, pipelineID))); m_pages.back()->addOverflowFn(bind(&Skin::onDynamicOverflow, this, pipelineID), 0); } } diff --git a/yg/skin_page.cpp b/yg/skin_page.cpp index 9ad1982fcf..38e6460044 100644 --- a/yg/skin_page.cpp +++ b/yg/skin_page.cpp @@ -45,7 +45,7 @@ namespace yg } SkinPage::SkinPage() - : m_usage(EStaticUsage), + : m_type(EStatic), m_pipelineID(0) {} @@ -55,16 +55,16 @@ namespace yg uint8_t pipelineID) : m_texture(resourceManager->getTexture(name)), m_packer(m_texture->width(), m_texture->height(), 0x00FFFFFF - 1), - m_usage(EStaticUsage), + m_type(EStatic), m_pipelineID(pipelineID) { } SkinPage::SkinPage(shared_ptr const & resourceManager, - EUsage usage, + EType type, uint8_t pipelineID) : m_resourceManager(resourceManager), - m_usage(usage), + m_type(type), m_pipelineID(pipelineID) { createPacker(); @@ -293,9 +293,17 @@ namespace yg return m_packer.hasRoom(p.x, p.y); } - SkinPage::EUsage SkinPage::usage() const + void SkinPage::setType(SkinPage::EType type) { - return m_usage; + m_type = type; + createPacker(); + if (m_type != EStatic) + m_packer.addOverflowFn(bind(&SkinPage::clearHandles, this), 0); + } + + SkinPage::EType SkinPage::type() const + { + return m_type; } bool SkinPage::hasData() @@ -310,7 +318,7 @@ namespace yg void SkinPage::checkTexture() const { - if ((m_usage != EStaticUsage) && (m_texture == 0)) + if ((m_type != EStatic) && (m_texture == 0)) reserveTexture(); } @@ -386,16 +394,18 @@ namespace yg { if (m_texture) { - switch (m_usage) + switch (m_type) { - case EDynamicUsage: + case EPrimary: m_resourceManager->primaryTextures()->Free(m_texture); break; - case EFontsUsage: + case EFonts: m_resourceManager->fontTextures()->Free(m_texture); break; + case ELightWeight: + m_resourceManager->guiThreadTextures()->Free(m_texture); default: - LOG(LINFO, ("freeTexture call for with invalid usage param")); + LOG(LINFO, ("freeTexture call for with invalid type param")); } m_texture.reset(); @@ -404,35 +414,43 @@ namespace yg void SkinPage::reserveTexture() const { - switch (m_usage) + switch (m_type) { - case EDynamicUsage: + case EPrimary: m_texture = m_resourceManager->primaryTextures()->Reserve(); break; - case EFontsUsage: + case EFonts: m_texture = m_resourceManager->fontTextures()->Reserve(); break; + case ELightWeight: + m_texture = m_resourceManager->guiThreadTextures()->Reserve(); + break; default: - LOG(LINFO, ("freeTexture call for with invalid usage param")); + LOG(LINFO, ("reserveTexture call for with invalid type param")); } } void SkinPage::createPacker() { - switch (m_usage) + switch (m_type) { - case EDynamicUsage: + case EPrimary: m_packer = m2::Packer(m_resourceManager->params().m_primaryTexturesParams.m_texWidth, m_resourceManager->params().m_primaryTexturesParams.m_texHeight, 0x00FFFFFF - 1); break; - case EFontsUsage: + case EFonts: m_packer = m2::Packer(m_resourceManager->params().m_fontTexturesParams.m_texWidth, m_resourceManager->params().m_fontTexturesParams.m_texHeight, 0x00FFFFFF - 1); break; + case ELightWeight: + m_packer = m2::Packer(m_resourceManager->params().m_guiThreadTexturesParams.m_texWidth, + m_resourceManager->params().m_guiThreadTexturesParams.m_texHeight, + 0x00FFFFFF - 1); + break; default: - LOG(LINFO, ("createPacker call for invalid usage param")); + LOG(LINFO, ("createPacker call for invalid type param")); } } diff --git a/yg/skin_page.hpp b/yg/skin_page.hpp index c747813c20..b53fd54f43 100644 --- a/yg/skin_page.hpp +++ b/yg/skin_page.hpp @@ -38,11 +38,12 @@ namespace yg { public: - enum EUsage + enum EType { - EStaticUsage, - EDynamicUsage, - EFontsUsage + EStatic, + EPrimary, + EFonts, + ELightWeight }; typedef m2::Packer::overflowFn overflowFn; @@ -82,7 +83,7 @@ namespace yg typedef vector TFonts; TFonts m_fonts; - EUsage m_usage; + EType m_type; uint32_t m_pipelineID; bool m_fillAlpha; @@ -123,7 +124,7 @@ namespace yg /// creation of a dynamic page SkinPage(shared_ptr const & resourceManager, - EUsage usage, + EType type, uint8_t pipelineID); void reserveTexture() const; @@ -152,7 +153,8 @@ namespace yg ResourceStyle * fromID(uint32_t idx) const; - EUsage usage() const; + void setType(EType type); + EType type() const; shared_ptr const & resourceManager() const; void addOverflowFn(overflowFn fn, int priority);