summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/style/types.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mbgl/style/types.hpp b/include/mbgl/style/types.hpp
index f6ffcd6865..e46ece6f4a 100644
--- a/include/mbgl/style/types.hpp
+++ b/include/mbgl/style/types.hpp
@@ -92,6 +92,8 @@ enum class JoinType : uint8_t {
Miter,
Bevel,
Round,
+ // the following two types are for internal use only
+ FakeRound,
FlipBevel
};
@@ -99,6 +101,7 @@ MBGL_DEFINE_ENUM_CLASS(JoinTypeClass, JoinType, {
{ JoinType::Miter, "miter" },
{ JoinType::Bevel, "bevel" },
{ JoinType::Round, "round" },
+ { JoinType::FakeRound, "fakeround" },
{ JoinType::FlipBevel, "flipbevel" },
});