summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/raster_layer_properties.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/layers/raster_layer_properties.hpp')
-rw-r--r--src/mbgl/style/layers/raster_layer_properties.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mbgl/style/layers/raster_layer_properties.hpp b/src/mbgl/style/layers/raster_layer_properties.hpp
new file mode 100644
index 0000000000..049da87312
--- /dev/null
+++ b/src/mbgl/style/layers/raster_layer_properties.hpp
@@ -0,0 +1,31 @@
+// 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 {
+namespace style {
+
+class CascadeParameters;
+class CalculationParameters;
+
+class RasterPaintProperties {
+public:
+ void parse(const JSValue&);
+ void cascade(const CascadeParameters&);
+ bool recalculate(const CalculationParameters&);
+
+ PaintProperty<float> rasterOpacity { 1 };
+ PaintProperty<float> rasterHueRotate { 0 };
+ PaintProperty<float> rasterBrightnessMin { 0 };
+ PaintProperty<float> rasterBrightnessMax { 1 };
+ PaintProperty<float> rasterSaturation { 0 };
+ PaintProperty<float> rasterContrast { 0 };
+ PaintProperty<float> rasterFadeDuration { 300 };
+};
+
+} // namespace style
+} // namespace mbgl