[iOS] Build Fixes.

This commit is contained in:
rachytski 2011-09-19 02:38:03 +03:00 committed by Alex Zolotarev
parent 5abb136bf2
commit 9392cd62d7
2 changed files with 5 additions and 4 deletions

View file

@ -356,7 +356,8 @@ void InformationDisplay::drawEmptyModelMessage(DrawerYG * pDrawer)
yg::StraightTextElement ste0(params);
math::Matrix<double, 3, 3> m = math::Shift(math::Identity<double, 3>(), m2::PointD(0, -ste0.boundRect().GetGlobalRect().SizeY() - 5));
math::Matrix<double, 3, 3> m = math::Shift(math::Identity<double, 3>(),
m2::PointD(0, -ste0.roughBoundRect().SizeY() - 5));
ste0.draw(pDrawer->screen().get(), m);
params.m_pivot = pt;
@ -365,13 +366,13 @@ void InformationDisplay::drawEmptyModelMessage(DrawerYG * pDrawer)
ste1.draw(pDrawer->screen().get(), math::Identity<double, 3>());
params.m_pivot.y += ste1.boundRect().GetGlobalRect().SizeY() + 5;
params.m_pivot.y += ste1.roughBoundRect().SizeY() + 5;
params.m_logText = strings::MakeUniString(s2);
yg::StraightTextElement ste2(params);
ste2.draw(pDrawer->screen().get(), math::Identity<double, 3>());
params.m_pivot.y += ste2.boundRect().GetGlobalRect().SizeY() + 5;
params.m_pivot.y += ste2.roughBoundRect().SizeY() + 5;
params.m_logText = strings::MakeUniString(s3);
yg::StraightTextElement ste3(params);

View file

@ -79,7 +79,7 @@ namespace yg
r->drawTexturedPolygon(m2::PointD(0.0, 0.0), 0.0,
texRect.minX(), texRect.minY(), texRect.maxX(), texRect.maxY(),
posPt.x, posPt.y, posPt.x + texRect.SizeX(), posPt.y + texRect.SizeY(),
depth(),
yg::maxDepth,
m_style->m_pipelineID);
}