forked from organicmaps/organicmaps
[drape] remove useless fields for path text
This commit is contained in:
parent
6e7769f083
commit
1b151d4618
3 changed files with 1 additions and 10 deletions
|
@ -309,9 +309,6 @@ void ApplyLineFeature::ProcessRule(Stylist::rule_wrapper_t const & rule)
|
|||
|
||||
PathTextViewParams params;
|
||||
params.m_depth = depth;
|
||||
params.m_featureID = m_id;
|
||||
params.m_offsetStart = 0;
|
||||
params.m_offsetEnd = 300;
|
||||
params.m_text = m_captions.GetPathName();
|
||||
params.m_textFont = fontDecl;
|
||||
|
||||
|
|
|
@ -67,11 +67,8 @@ struct TextViewParams : CommonViewParams
|
|||
|
||||
struct PathTextViewParams : CommonViewParams
|
||||
{
|
||||
FeatureID m_featureID;
|
||||
FontDecl m_textFont;
|
||||
string m_text;
|
||||
float m_offsetStart;
|
||||
float m_offsetEnd;
|
||||
};
|
||||
|
||||
struct PathSymbolViewParams : CommonViewParams
|
||||
|
|
|
@ -404,13 +404,10 @@ void TestingEngine::DrawImpl()
|
|||
path.push_back(m2::PointF(1600, 450));
|
||||
|
||||
PathTextViewParams params3;
|
||||
params3.m_featureID = FeatureID(23, 78);
|
||||
params3.m_depth = -10.0f;
|
||||
params3.m_offsetEnd = 600.0f;
|
||||
params3.m_offsetStart = 100.0f;
|
||||
params3.m_text = "√2+√3=?-fghjkfghjf---_________----+";
|
||||
params3.m_textFont = params.m_primaryTextFont;
|
||||
PathTextShape sh3(path, params3);
|
||||
PathTextShape sh3(path, params3, 1);
|
||||
sh3.Draw(m_batcher.GetRefPointer(), m_textures.GetRefPointer());
|
||||
|
||||
PathSymbolViewParams params4;
|
||||
|
|
Loading…
Add table
Reference in a new issue