diff --git a/drape/texture_manager.cpp b/drape/texture_manager.cpp index c3e31a922b..56c2226fb0 100644 --- a/drape/texture_manager.cpp +++ b/drape/texture_manager.cpp @@ -116,25 +116,25 @@ void TextureManager::Init(string const & resourcePrefix) m_textures.push_back(MasterPointer(defaultSet)); vector > tempTextures; - LoadFont(string("resources-common/font"), tempTextures); - for (size_t i = 0; i < tempTextures.size(); ++i) - { - RefPointer set = m_textures.back().GetRefPointer(); - if (set->IsFull()) - { - m_textures.push_back(MasterPointer(new TextureSet(m_maxTextureBlocks))); - set = m_textures.back().GetRefPointer(); - } +// LoadFont(string("resources-common/font"), tempTextures); +// for (size_t i = 0; i < tempTextures.size(); ++i) +// { +// RefPointer set = m_textures.back().GetRefPointer(); +// if (set->IsFull()) +// { +// m_textures.push_back(MasterPointer(new TextureSet(m_maxTextureBlocks))); +// set = m_textures.back().GetRefPointer(); +// } - set->AddTexture(tempTextures[i]); - } +// set->AddTexture(tempTextures[i]); +// } - RefPointer textureSet = m_textures.back().GetRefPointer(); - if (textureSet->IsFull()) - { - m_textures.push_back(MasterPointer(new TextureSet(m_maxTextureBlocks))); - textureSet = m_textures.back().GetRefPointer(); - } +// RefPointer textureSet = m_textures.back().GetRefPointer(); +// if (textureSet->IsFull()) +// { +// m_textures.push_back(MasterPointer(new TextureSet(m_maxTextureBlocks))); +// textureSet = m_textures.back().GetRefPointer(); +// } } void TextureManager::Release() @@ -174,8 +174,9 @@ bool TextureManager::FindResource(TKey const & key, TRegion & region) const bool TextureManager::GetGlyphRegion(strings::UniChar charCode, GlyphRegion & region) const { - FontTexture::GlyphKey key(charCode); - return FindResource(key, region); + //FontTexture::GlyphKey key(charCode); + //return FindResource(key, region); + return false; } void TextureManager::GetStippleRegion(StipplePenKey const & pen, TextureSetHolder::StippleRegion & region) const diff --git a/drape/texture_set_holder.cpp b/drape/texture_set_holder.cpp index 3392bfeeb8..857cea618b 100644 --- a/drape/texture_set_holder.cpp +++ b/drape/texture_set_holder.cpp @@ -67,14 +67,15 @@ TextureSetHolder::GlyphRegion::GlyphRegion() void TextureSetHolder::GlyphRegion::GetMetrics(float & xOffset, float & yOffset, float & advance) const { ASSERT(m_info->GetType() == Texture::Glyph, ()); - FontTexture::GlyphInfo const * info = static_cast(m_info); - info->GetMetrics(xOffset, yOffset, advance); + //FontTexture::GlyphInfo const * info = static_cast(m_info); + //info->GetMetrics(xOffset, yOffset, advance); } float TextureSetHolder::GlyphRegion::GetAdvance() const { ASSERT(m_info->GetType() == Texture::Glyph, ()); - return static_cast(m_info)->GetAdvance(); + //return static_cast(m_info)->GetAdvance(); + return 0.0f; } uint32_t TextureSetHolder::StippleRegion::GetMaskPixelLength() const