summaryrefslogtreecommitdiff
path: root/src/mbgl/layer/fill_layer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/layer/fill_layer.hpp')
-rw-r--r--src/mbgl/layer/fill_layer.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mbgl/layer/fill_layer.hpp b/src/mbgl/layer/fill_layer.hpp
index 1132fbf4e8..93514ee425 100644
--- a/src/mbgl/layer/fill_layer.hpp
+++ b/src/mbgl/layer/fill_layer.hpp
@@ -8,13 +8,13 @@ namespace mbgl {
class FillPaintProperties {
public:
- PaintProperty<bool> antialias = true;
- PaintProperty<float> opacity = 1.0f;
- PaintProperty<Color> color = { {{ 0, 0, 0, 1 }} };
- PaintProperty<Color> outlineColor = { {{ 0, 0, 0, -1 }} };
- PaintProperty<std::array<float, 2>> translate = { {{ 0, 0 }} };
- PaintProperty<TranslateAnchorType> translateAnchor = TranslateAnchorType::Map;
- PaintProperty<std::string, Faded<std::string>> pattern = { "" };
+ PaintProperty<bool> antialias { true };
+ PaintProperty<float> opacity { 1.0f };
+ PaintProperty<Color> color { {{ 0, 0, 0, 1 }} };
+ PaintProperty<Color> outlineColor { {{ 0, 0, 0, -1 }} };
+ PaintProperty<std::array<float, 2>> translate { {{ 0, 0 }} };
+ PaintProperty<TranslateAnchorType> translateAnchor { TranslateAnchorType::Map };
+ PaintProperty<std::string, Faded<std::string>> pattern { "" };
};
class FillLayer : public StyleLayer {