summaryrefslogtreecommitdiff
path: root/src/mbgl/style
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2015-02-03 17:05:29 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-02-03 17:05:29 -0800
commit44be4862345af7a51f1e533da9cdf920496817b7 (patch)
tree20841795ad819b0fb02e5a42958be71f7353fe39 /src/mbgl/style
parent895d90409b66738f88d3cd7fd75c533fb92f922a (diff)
downloadqtlocation-mapboxgl-44be4862345af7a51f1e533da9cdf920496817b7.tar.gz
Remove unused
Fixes #786 Fixes #797
Diffstat (limited to 'src/mbgl/style')
-rw-r--r--src/mbgl/style/style_bucket.hpp2
-rw-r--r--src/mbgl/style/types.hpp12
2 files changed, 0 insertions, 14 deletions
diff --git a/src/mbgl/style/style_bucket.hpp b/src/mbgl/style/style_bucket.hpp
index 702d0286a0..08884c2e09 100644
--- a/src/mbgl/style/style_bucket.hpp
+++ b/src/mbgl/style/style_bucket.hpp
@@ -19,7 +19,6 @@ class Source;
class StyleBucketFill {
public:
- WindingType winding = WindingType::NonZero;
};
class StyleBucketLine {
@@ -68,7 +67,6 @@ public:
TextAnchorType anchor = TextAnchorType::Center;
float max_angle = 45.0f /* degrees */;
float rotate = 0.0f;
- float slant = 0.0f;
float padding = 2.0f;
bool keep_upright = true;
TextTransformType transform = TextTransformType::None;
diff --git a/src/mbgl/style/types.hpp b/src/mbgl/style/types.hpp
index c0b873dcd9..6149270170 100644
--- a/src/mbgl/style/types.hpp
+++ b/src/mbgl/style/types.hpp
@@ -62,18 +62,6 @@ MBGL_DEFINE_ENUM_CLASS(VisibilityTypeClass, VisibilityType, {
// -------------------------------------------------------------------------------------------------
-enum class WindingType : bool {
- EvenOdd,
- NonZero,
-};
-
-MBGL_DEFINE_ENUM_CLASS(WindingTypeClass, WindingType, {
- { WindingType::EvenOdd, "even-odd" },
- { WindingType::NonZero, "non-zero" },
-});
-
-// -------------------------------------------------------------------------------------------------
-
enum class CapType : uint8_t {
Round,
Butt,