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:
Diffstat (limited to 'drape_frontend/text_layout.hpp')
-rw-r--r--drape_frontend/text_layout.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/drape_frontend/text_layout.hpp b/drape_frontend/text_layout.hpp
index 5e4f33c1f2..5079e899a0 100644
--- a/drape_frontend/text_layout.hpp
+++ b/drape_frontend/text_layout.hpp
@@ -30,13 +30,14 @@ public:
void InitPathText(float depth,
vector<glsl_types::Quad4> & texCoord,
vector<glsl_types::Quad4> & fontColor,
- vector<glsl_types::Quad4> & outlineColor) const;
+ vector<glsl_types::Quad1> & index,
+ dp::RefPointer<dp::TextureSetHolder> textures) const;
void LayoutPathText(m2::Spline::iterator const & iterator,
float const scalePtoG,
IntrusiveVector<glsl_types::vec2> & positions,
bool isForwardDirection,
vector<m2::RectF> & rects,
- const ScreenBase & screen) const;
+ ScreenBase const & screen) const;
uint32_t GetGlyphCount() const;
uint32_t GetTextureSet() const;
@@ -63,7 +64,7 @@ private:
vector<glsl_types::Quad4> & positions,
vector<glsl_types::Quad4> & texCoord,
vector<glsl_types::Quad4> & color,
- vector<glsl_types::Quad4> & index,
+ vector<glsl_types::Quad1> & index,
dp::RefPointer<dp::TextureSetHolder> textures,
int count);
};