summaryrefslogtreecommitdiff
path: root/src/mbgl/layer/line_layer.hpp
blob: f5125bcd8d93c4c28d425a8481b27cc131c35c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MBGL_LINE_LAYER
#define MBGL_LINE_LAYER

#include <mbgl/style/style_layer.hpp>
#include <mbgl/style/style_properties.hpp>

namespace mbgl {

class LineLayer : public StyleLayer {
public:
    RenderPass applyStyleProperties(const StyleCalculationParameters&) override;

    LinePaintProperties properties;
};

}

#endif