summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-05-23 12:40:15 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-05-23 13:38:59 +0200
commit7d767f518b62ddb00ba0c526b3d52d140c36197c (patch)
tree7234819db6dc123be6292172612d120416c8b9a9 /include
parentce2270eafcb1e052e7b6aa089e2460cc0003c9e9 (diff)
downloadqtlocation-mapboxgl-7d767f518b62ddb00ba0c526b3d52d140c36197c.tar.gz
add keys to stylesheet
Diffstat (limited to 'include')
-rw-r--r--include/llmr/style/properties.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llmr/style/properties.hpp b/include/llmr/style/properties.hpp
index ba0979cb93..616936ea8f 100644
--- a/include/llmr/style/properties.hpp
+++ b/include/llmr/style/properties.hpp
@@ -155,6 +155,8 @@ struct FillClass {
boost::optional<FunctionProperty> opacity;
boost::optional<PropertyTransition> opacity_transition;
boost::optional<std::string> image;
+ boost::optional<FunctionProperty> prerendered;
+ boost::optional<FunctionProperty> blur;
};
struct FillProperties {
@@ -166,6 +168,8 @@ struct FillProperties {
Color fill_color = {{ 0, 0, 0, 1 }};
Color stroke_color = {{ 0, 0, 0, 1 }};
float opacity = 1.0;
+ bool prerendered = false;
+ float blur = 0.0f;
std::string image;
};