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

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

namespace mbgl {

class BackgroundLayer : public StyleLayer {
public:
    void recalculate(const StyleCalculationParameters&) override;

    BackgroundPaintProperties properties;
};

}

#endif