summaryrefslogtreecommitdiff
path: root/src/mbgl/text/placement.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-02-17 18:09:34 -0800
committerKonstantin Käfer <mail@kkaefer.com>2015-02-17 18:27:51 -0800
commitc07fa069944b42890aa419cfe542ed98add57037 (patch)
treee4b43fd47c24633a649d65608387ee4a1eb5f80f /src/mbgl/text/placement.hpp
parent89c0ff5f3955ecd4316a7b4280e995b7b431817d (diff)
downloadqtlocation-mapboxgl-c07fa069944b42890aa419cfe542ed98add57037.tar.gz
rename StyleBucket* => StyleLayout*
and remove a few unused variables refs #881
Diffstat (limited to 'src/mbgl/text/placement.hpp')
-rw-r--r--src/mbgl/text/placement.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mbgl/text/placement.hpp b/src/mbgl/text/placement.hpp
index 28eb8d5317..40762b8d70 100644
--- a/src/mbgl/text/placement.hpp
+++ b/src/mbgl/text/placement.hpp
@@ -9,16 +9,16 @@
namespace mbgl {
struct Anchor;
-class StyleBucketSymbol;
+class StyleLayoutSymbol;
class Placement {
public:
static Placement getIcon(Anchor &anchor, const Rect<uint16_t> &image, float iconBoxScale,
- const std::vector<Coordinate> &line, const StyleBucketSymbol &props);
+ const std::vector<Coordinate> &line, const StyleLayoutSymbol &layout);
static Placement getGlyphs(Anchor &anchor, const vec2<float> &origin, const Shaping &shaping,
const GlyphPositions &face, float boxScale, bool horizontal,
- const std::vector<Coordinate> &line, const StyleBucketSymbol &props);
+ const std::vector<Coordinate> &line, const StyleLayoutSymbol &layout);
static const float globalMinScale;