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

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

namespace mbgl {

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

    FillPaintProperties properties;
};

}

#endif