diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2015-10-19 13:19:52 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-10-22 09:21:30 -0700 |
commit | df89de5cc5bf043ca2fe57ef4dd9a7b5d25464cb (patch) | |
tree | ecac13b203cd45451aeff565cb11b179a5ef84d6 /src/mbgl/text/quads.hpp | |
parent | 83d39364f9de987d7840900db2e01673bc1ed6ef (diff) | |
download | qtlocation-mapboxgl-df89de5cc5bf043ca2fe57ef4dd9a7b5d25464cb.tar.gz |
[core] Rationalize style property classes: <type>{Paint,Layout}Properties
Diffstat (limited to 'src/mbgl/text/quads.hpp')
-rw-r--r-- | src/mbgl/text/quads.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mbgl/text/quads.hpp b/src/mbgl/text/quads.hpp index 97fdb6a1fc..814452a72f 100644 --- a/src/mbgl/text/quads.hpp +++ b/src/mbgl/text/quads.hpp @@ -33,16 +33,16 @@ namespace mbgl { typedef std::vector<SymbolQuad> SymbolQuads; struct Anchor; - class StyleLayoutSymbol; + class SymbolLayoutProperties; class PositionedIcon; - SymbolQuads getIconQuads(Anchor &anchor, const PositionedIcon &shapedIcon, - const std::vector<Coordinate> &line, const StyleLayoutSymbol &layout, + SymbolQuads getIconQuads(Anchor& anchor, const PositionedIcon& shapedIcon, + const std::vector<Coordinate>& line, const SymbolLayoutProperties& layout, const bool alongLine); - SymbolQuads getGlyphQuads(Anchor &anchor, const Shaping &shapedText, - const float boxScale, const std::vector<Coordinate> &line, const StyleLayoutSymbol &layout, - const bool alongLine, const GlyphPositions &face); + SymbolQuads getGlyphQuads(Anchor& anchor, const Shaping& shapedText, + const float boxScale, const std::vector<Coordinate>& line, const SymbolLayoutProperties& layout, + const bool alongLine, const GlyphPositions& face); } #endif |