Always drawing masked texts.

This commit is contained in:
rachytski 2011-01-28 00:39:44 +02:00 committed by Alex Zolotarev
parent cc8a8a947d
commit 9263e8a91c

View file

@ -150,7 +150,7 @@ void DrawerYG::drawArea(vector<m2::PointD> const & pts, rule_ptr_t pRule, int de
namespace
{
double const min_text_height = 7.99; // 8
double const min_text_height_mask = 9.99; // 10
// double const min_text_height_mask = 9.99; // 10
}
uint8_t DrawerYG::get_text_font_size(rule_ptr_t pRule) const
@ -172,11 +172,11 @@ void DrawerYG::drawText(m2::PointD const & pt, string const & name, rule_ptr_t p
bool DrawerYG::drawPathText(di::PathInfo const & info, string const & name, uint8_t fontSize, int /*depth*/)
{
bool const isMasked = (double(fontSize) / m_visualScale >= min_text_height_mask);
// bool const isMasked = (double(fontSize) / m_visualScale >= min_text_height);
return m_pScreen->drawPathText( &info.m_path[0], info.m_path.size(), fontSize, name,
info.GetLength(), info.GetOffset(),
yg::gl::Screen::middle_line, isMasked, yg::maxDepth);
yg::gl::Screen::middle_line, true, yg::maxDepth);
}
shared_ptr<yg::gl::Screen> DrawerYG::screen() const