summaryrefslogtreecommitdiff
path: root/src/mbgl/layer/line_layer.hpp
blob: 9f59768c1fb8bd16d20c2a604cb6747bcf46d430 (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(float z, const TimePoint& now, const ZoomHistory&) override;

    LinePaintProperties properties;
};

}

#endif