From 9309f59de3e156432087b55f0f7e3ebc026b78e8 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Tue, 31 Mar 2015 15:33:57 -0700 Subject: split generating symbol quads from collision code Collision prevention is temporarily disabled. --- src/mbgl/text/placement.hpp | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/mbgl/text/placement.hpp (limited to 'src/mbgl/text/placement.hpp') diff --git a/src/mbgl/text/placement.hpp b/src/mbgl/text/placement.hpp deleted file mode 100644 index 40762b8d70..0000000000 --- a/src/mbgl/text/placement.hpp +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef MBGL_TEXT_PLACEMENT -#define MBGL_TEXT_PLACEMENT - -#include -#include - -#include - -namespace mbgl { - -struct Anchor; -class StyleLayoutSymbol; - -class Placement { -public: - static Placement getIcon(Anchor &anchor, const Rect &image, float iconBoxScale, - const std::vector &line, const StyleLayoutSymbol &layout); - - static Placement getGlyphs(Anchor &anchor, const vec2 &origin, const Shaping &shaping, - const GlyphPositions &face, float boxScale, bool horizontal, - const std::vector &line, const StyleLayoutSymbol &layout); - - static const float globalMinScale; - - GlyphBoxes boxes; - PlacedGlyphs shapes; - float minScale; -}; -} - -#endif -- cgit v1.2.1