blob: acf8c470bffde7ea27911ca8fbe92ee9f8af4fa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef MBGL_TEXT_SHAPING
#define MBGL_TEXT_SHAPING
#include <mbgl/text/glyph.hpp>
#include <mbgl/util/vec.hpp>
namespace mbgl {
class PositionedIcon {
public:
inline explicit PositionedIcon() {}
inline explicit PositionedIcon(Rect<uint16_t> _image,
float _top, float _bottom, float _left, float _right) :
image(_image), top(_top), bottom(_bottom), left(_left), right(_right) {}
Rect<uint16_t> image;
float top = 0;
float bottom = 0;
float left = 0;
float right = 0;
operator bool() const { return image.hasArea(); }
};
class SymbolLayoutProperties;
PositionedIcon shapeIcon(const Rect<uint16_t>& image, const SymbolLayoutProperties&);
} // namespace mbgl
#endif
|