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.hpp
parent96973c8454e4926937da147217fcd6f081f85300 (diff)
separated OpenGL-dependent classes into separate namespace for better modularity and easier porting.
Diffstat (limited to 'map/compass_arrow.hpp')
-rw-r--r--map/compass_arrow.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/compass_arrow.hpp b/map/compass_arrow.hpp
index efdec9525b..035aac25c2 100644
--- a/map/compass_arrow.hpp
+++ b/map/compass_arrow.hpp
@@ -27,7 +27,7 @@ private:
graphics::Color const m_southRightColor;
double m_angle;
- scoped_ptr<graphics::gl::DisplayList> m_displayList;
+ scoped_ptr<graphics::DisplayList> m_displayList;
mutable vector<m2::AnyRectD> m_boundRects;
@@ -52,7 +52,7 @@ public:
unsigned GetArrowHeight() const;
vector<m2::AnyRectD> const & boundRects() const;
- void draw(graphics::gl::OverlayRenderer * r, math::Matrix<double, 3, 3> const & m) const;
+ void draw(graphics::OverlayRenderer * r, math::Matrix<double, 3, 3> const & m) const;
bool onTapEnded(m2::PointD const & pt);