summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/icon_buffer.hpp
blob: d3c3999ee9dfca5f71951c071bfd78e1473548e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MBGL_GEOMETRY_ICON_BUFFER
#define MBGL_GEOMETRY_ICON_BUFFER

#include <mbgl/geometry/buffer.hpp>

#include <array>

namespace mbgl {

    class IconVertexBuffer : public Buffer<
    16
    > {
    public:
        size_t add(int16_t x, int16_t y, float ox, float oy, int16_t tx, int16_t ty, float minzoom, float maxzoom, float labelminzoom);

    };

} // namespace mbgl

#endif