Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-07-30 11:32:59 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:09:33 +0300
commit61b04a64ba3811432e0fcb2f6f78177a7c852c59 (patch)
tree69e07a9ebe3f004e234eb037441d4376b7915f25 /drape_head
parentd6acc20e7e2e3c5dd32f83da6e301934626443a7 (diff)
Review fixes
Diffstat (limited to 'drape_head')
-rw-r--r--drape_head/testing_engine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/drape_head/testing_engine.cpp b/drape_head/testing_engine.cpp
index b4c2b22706..727f52f41f 100644
--- a/drape_head/testing_engine.cpp
+++ b/drape_head/testing_engine.cpp
@@ -463,7 +463,7 @@ void TestingEngine::DrawImpl()
lvp.m_color = dp::Color::Red();
lvp.m_width = 16.0f;
lvp.m_join = dp::BevelJoin;
- LineShape(spline, lvp, make_ref(m_textures)).Draw(make_ref(m_batcher), make_ref(m_textures));
+ LineShape(spline, lvp).Draw(make_ref(m_batcher), make_ref(m_textures));
{
PathSymbolViewParams p;
@@ -494,7 +494,7 @@ void TestingEngine::DrawImpl()
lvp.m_join = dp::RoundJoin;
lvp.m_cap = dp::RoundCap;
lvp.m_color = dp::Color::Black();
- LineShape(spl1, lvp, make_ref(m_textures)).Draw(make_ref(m_batcher), make_ref(m_textures));
+ LineShape(spl1, lvp).Draw(make_ref(m_batcher), make_ref(m_textures));
}
{
@@ -518,7 +518,7 @@ void TestingEngine::DrawImpl()
lvpl.m_pattern.clear();
lvpl.m_depth = -10.0f;
lvpl.m_width = 2.0f;
- LineShape(spl, lvpl, make_ref(m_textures)).Draw(make_ref(m_batcher), make_ref(m_textures));
+ LineShape(spl, lvpl).Draw(make_ref(m_batcher), make_ref(m_textures));
DummyMutableLabel tt(m2::PointF(120.0f, 30.0f), "200 km");
tt.Draw(make_ref(m_batcher), make_ref(m_textures));
@@ -537,7 +537,7 @@ void TestingEngine::DrawImpl()
lvpl.m_pattern.clear();
lvpl.m_depth = -10.0f;
lvpl.m_width = 2.0f;
- LineShape(spl, lvpl, make_ref(m_textures)).Draw(make_ref(m_batcher), make_ref(m_textures));
+ LineShape(spl, lvpl).Draw(make_ref(m_batcher), make_ref(m_textures));
}
dp::FontDecl font(dp::Color::Black(), 14);
@@ -577,7 +577,7 @@ void TestingEngine::DrawRects()
};
m2::SharedSpline spline(path);
- LineShape(spline, lvp, make_ref(m_textures)).Draw(make_ref(m_batcher), make_ref(m_textures));
+ LineShape(spline, lvp).Draw(make_ref(m_batcher), make_ref(m_textures));
};
for (m2::RectD const & r : m_boundRects)