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:
authorrachytski <siarhei.rachytski@gmail.com>2012-11-15 23:58:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:47:04 +0300
commitc34b0b50e13e286abafe8351475670b47937c3dc (patch)
treee6b3b3da8f53e09830b7fa75f91e37860e4380f1 /map/compass_arrow.cpp
parent96973c8454e4926937da147217fcd6f081f85300 (diff)
separated OpenGL-dependent classes into separate namespace for better modularity and easier porting.
Diffstat (limited to 'map/compass_arrow.cpp')
-rw-r--r--map/compass_arrow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/compass_arrow.cpp b/map/compass_arrow.cpp
index 573b55e64c..78aa1743fd 100644
--- a/map/compass_arrow.cpp
+++ b/map/compass_arrow.cpp
@@ -52,7 +52,7 @@ vector<m2::AnyRectD> const & CompassArrow::boundRects() const
return m_boundRects;
}
-void CompassArrow::draw(graphics::gl::OverlayRenderer * r,
+void CompassArrow::draw(graphics::OverlayRenderer * r,
math::Matrix<double, 3, 3> const & m) const
{
if (isVisible())
@@ -71,7 +71,7 @@ void CompassArrow::draw(graphics::gl::OverlayRenderer * r,
void CompassArrow::cache()
{
- graphics::gl::Screen * cacheScreen = m_controller->GetCacheScreen();
+ graphics::Screen * cacheScreen = m_controller->GetCacheScreen();
m_displayList.reset();
m_displayList.reset(cacheScreen->createDisplayList());