forked from organicmaps/organicmaps
improving consistency of chinese text displaying.
This commit is contained in:
parent
41bddc457d
commit
3fdbbd80eb
2 changed files with 32 additions and 2 deletions
|
@ -2,3 +2,4 @@ Basic_Latin 01_dejavusans.ttf
|
|||
Latin-1_Supplement 01_dejavusans.ttf
|
||||
Latin_Extended-A 01_dejavusans.ttf
|
||||
Latin_Extended-B 01_dejavusans.ttf
|
||||
CJK_Compatibility 02_wqy-microhei.ttf
|
||||
|
|
|
@ -114,10 +114,39 @@ namespace yg
|
|||
for (int i = 0; i < fontNames.size(); ++i)
|
||||
addFont(fontNames[i].c_str());
|
||||
|
||||
/* for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it)
|
||||
/* LOG(LINFO, ("----------------------------"));
|
||||
LOG(LINFO, ("-- Coverage Info -----------"));
|
||||
LOG(LINFO, ("----------------------------"));
|
||||
|
||||
for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it)
|
||||
{
|
||||
if (!it->m_fonts.empty())
|
||||
{
|
||||
std::stringstream out;
|
||||
|
||||
out << it->m_name << " : " << it->m_end + 1 - it->m_start << " symbols -> [";
|
||||
|
||||
for (unsigned i = 0; i < it->m_fonts.size(); ++i)
|
||||
{
|
||||
out << extract_name(it->m_fonts[i]->m_name) << " : " << it->m_coverage[i];
|
||||
if (i != it->m_fonts.size() - 1)
|
||||
out << ", ";
|
||||
}
|
||||
|
||||
out << "]";
|
||||
|
||||
LOG(LINFO, (out.str()));
|
||||
}
|
||||
}
|
||||
|
||||
LOG(LINFO, ("----------------------------"));
|
||||
LOG(LINFO, ("-- Empty blocks ------------"));
|
||||
LOG(LINFO, ("----------------------------"));
|
||||
|
||||
for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it)
|
||||
if (it->m_fonts.empty())
|
||||
LOG(LINFO, (it->m_name, " unicode block of ", it->m_end + 1 - it->m_start, " symbols is empty"));
|
||||
*/
|
||||
*/
|
||||
}
|
||||
|
||||
void GlyphCacheImpl::addFont(char const * fileName)
|
||||
|
|
Loading…
Add table
Reference in a new issue