Large non-sdf text rendering fixed.

This commit is contained in:
Daria Volvenkova 2017-01-17 17:26:13 +03:00 committed by Vladimir Byko-Ianko
parent cce7aaa5ed
commit c29623539a

View file

@ -345,9 +345,9 @@ void TextLayout::Init(strings::UniString const & text, float fontSize, bool isSd
ref_ptr<dp::TextureManager> textures)
{
m_text = text;
m_textSizeRatio = isSdf ? (fontSize / VisualParams::Instance().GetGlyphBaseSize()) : 1.0;
m_textSizeRatio *= VisualParams::Instance().GetFontScale();
m_fixedHeight = isSdf ? dp::GlyphManager::kDynamicGlyphSize : fontSize;
double const fontScale = VisualParams::Instance().GetFontScale();
m_textSizeRatio = isSdf ? (fontSize * fontScale / VisualParams::Instance().GetGlyphBaseSize()) : 1.0;
m_fixedHeight = isSdf ? dp::GlyphManager::kDynamicGlyphSize : fontSize * fontScale;
textures->GetGlyphRegions(text, m_fixedHeight, m_metrics);
}