summaryrefslogtreecommitdiff
path: root/include/llmr/style/types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/llmr/style/types.hpp')
-rw-r--r--include/llmr/style/types.hpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/llmr/style/types.hpp b/include/llmr/style/types.hpp
index fd862c00d4..fc0cc99abb 100644
--- a/include/llmr/style/types.hpp
+++ b/include/llmr/style/types.hpp
@@ -9,19 +9,20 @@ namespace llmr {
// Stores a premultiplied color, with all four channels ranging from 0..1
typedef std::array<float, 4> Color;
-enum class BucketType : uint8_t {
- None,
+enum class StyleLayerType : uint8_t {
+ Unknown,
Fill,
Line,
Icon,
Text,
Raster,
- Default = None
+ Composite,
+ Background
};
-BucketType parseBucketType(const std::string &type);
-const char *stringifyBucketType(BucketType type);
-std::ostream& operator<<(std::ostream&, BucketType type);
+StyleLayerType parseStyleLayerType(const std::string &type);
+const char *stringifyStyleLayerType(StyleLayerType type);
+std::ostream& operator<<(std::ostream&, StyleLayerType type);
enum class WindingType : uint8_t {