summaryrefslogtreecommitdiff
path: root/src/mbgl/text/quads.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2015-10-19 13:19:52 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-10-22 09:21:30 -0700
commitdf89de5cc5bf043ca2fe57ef4dd9a7b5d25464cb (patch)
treeecac13b203cd45451aeff565cb11b179a5ef84d6 /src/mbgl/text/quads.hpp
parent83d39364f9de987d7840900db2e01673bc1ed6ef (diff)
downloadqtlocation-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.hpp12
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