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

path_symbol_shape.hpp « drape_frontend - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d02c36c0d657ef722e4ecf53a1e4633fd2e08f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include "drape_frontend/map_shape.hpp"
#include "drape_frontend/shape_view_params.hpp"

#include "geometry/spline.hpp"

namespace df
{

class PathSymbolShape : public MapShape
{
public:
  PathSymbolShape(m2::SharedSpline const & spline, PathSymbolViewParams const & params);
  void Draw(ref_ptr<dp::Batcher> batcher, ref_ptr<dp::TextureManager> textures) const override;

private:
  PathSymbolViewParams m_params;
  m2::SharedSpline m_spline;
};

}