summaryrefslogtreecommitdiff
path: root/src/mbgl/layer/background_layer_properties.hpp
blob: 20db9b22fbf6bace6aeaeeccb9b429cf2bd7ee91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// This file is generated. Edit scripts/generate-style-code.js, then run `make style-code`.

#pragma once

#include <mbgl/style/layout_property.hpp>
#include <mbgl/style/paint_property.hpp>
#include <mbgl/util/rapidjson.hpp>

namespace mbgl {

class StyleCascadeParameters;
class StyleCalculationParameters;

class BackgroundPaintProperties {
public:
    void parse(const JSValue&);
    void cascade(const StyleCascadeParameters&);
    bool recalculate(const StyleCalculationParameters&);

    PaintProperty<Color> backgroundColor { {{ 0, 0, 0, 1 }} };
    PaintProperty<std::string, CrossFadedPropertyEvaluator> backgroundPattern { "" };
    PaintProperty<float> backgroundOpacity { 1 };
};

} // namespace mbgl