summaryrefslogtreecommitdiff
path: root/src/mbgl/layer/raster_layer.hpp
blob: 52c0f0a7ae4a9dd269130cbc9b20ad981018e790 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef MBGL_RASTER_LAYER
#define MBGL_RASTER_LAYER

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

namespace mbgl {

class RasterPaintProperties {
public:
    PaintProperty<float> opacity { 1.0f };
    PaintProperty<float> hueRotate { 0.0f };
    PaintProperty<float> brightnessMin { 0.0f };
    PaintProperty<float> brightnessMax { 1.0f };
    PaintProperty<float> saturation { 0.0f };
    PaintProperty<float> contrast { 0.0f };
    PaintProperty<float> fadeDuration { 0.0f };
};

class RasterLayer : public StyleLayer {
public:
    RasterLayer() : StyleLayer(Type::Raster) {}
    std::unique_ptr<StyleLayer> clone() const override;

    void parseLayout(const JSValue&) override {};
    void parsePaints(const JSValue&) override;

    void cascade(const StyleCascadeParameters&) override;
    bool recalculate(const StyleCalculationParameters&) override;

    std::unique_ptr<Bucket> createBucket(StyleBucketParameters&) const override;

    RasterPaintProperties paint;
};

template <>
inline bool StyleLayer::is<RasterLayer>() const {
    return type == Type::Raster;
}

} // namespace mbgl

#endif