diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-05-30 13:58:59 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-06-05 19:38:08 -0700 |
commit | 74af076d405a089fac70a47e41fe92d04d97fc50 (patch) | |
tree | 29e4a76538da9a9455f711a25e7d5ddc1dece625 /src/mbgl/geometry | |
parent | 1cf46d93b944095726396acf84649519e2fd96ad (diff) | |
download | qtlocation-mapboxgl-74af076d405a089fac70a47e41fe92d04d97fc50.tar.gz |
[core] Split RenderStyle from Style
Diffstat (limited to 'src/mbgl/geometry')
-rw-r--r-- | src/mbgl/geometry/feature_index.cpp | 10 | ||||
-rw-r--r-- | src/mbgl/geometry/feature_index.hpp | 9 |
2 files changed, 8 insertions, 11 deletions
diff --git a/src/mbgl/geometry/feature_index.cpp b/src/mbgl/geometry/feature_index.cpp index 115b9f354d..b1594388c4 100644 --- a/src/mbgl/geometry/feature_index.cpp +++ b/src/mbgl/geometry/feature_index.cpp @@ -1,5 +1,5 @@ #include <mbgl/geometry/feature_index.hpp> -#include <mbgl/style/style.hpp> +#include <mbgl/renderer/render_style.hpp> #include <mbgl/renderer/render_layer.hpp> #include <mbgl/renderer/layers/render_symbol_layer.hpp> #include <mbgl/text/collision_tile.hpp> @@ -54,7 +54,7 @@ static bool topDownSymbols(const IndexedSubfeature& a, const IndexedSubfeature& } static int16_t getAdditionalQueryRadius(const RenderedQueryOptions& queryOptions, - const style::Style& style, + const RenderStyle& style, const GeometryTile& tile, const float pixelsToTileUnits) { @@ -69,7 +69,7 @@ static int16_t getAdditionalQueryRadius(const RenderedQueryOptions& queryOptions if (queryOptions.layerIDs) { for (const auto& layerID : *queryOptions.layerIDs) { - RenderLayer* layer = style.getRenderLayer(layerID); + const RenderLayer* layer = style.getRenderLayer(layerID); if (layer) { getQueryRadius(*layer); } @@ -92,7 +92,7 @@ void FeatureIndex::query( const RenderedQueryOptions& queryOptions, const GeometryTileData& geometryTileData, const CanonicalTileID& tileID, - const style::Style& style, + const RenderStyle& style, const CollisionTile* collisionTile, const GeometryTile& tile) const { @@ -135,7 +135,7 @@ void FeatureIndex::addFeature( const RenderedQueryOptions& options, const GeometryTileData& geometryTileData, const CanonicalTileID& tileID, - const style::Style& style, + const RenderStyle& style, const float bearing, const float pixelsToTileUnits) const { diff --git a/src/mbgl/geometry/feature_index.hpp b/src/mbgl/geometry/feature_index.hpp index f7aa0182e4..83f339a9de 100644 --- a/src/mbgl/geometry/feature_index.hpp +++ b/src/mbgl/geometry/feature_index.hpp @@ -13,10 +13,7 @@ namespace mbgl { class GeometryTile; class RenderedQueryOptions; - -namespace style { -class Style; -} // namespace style +class RenderStyle; class CollisionTile; class CanonicalTileID; @@ -45,7 +42,7 @@ public: const RenderedQueryOptions& options, const GeometryTileData&, const CanonicalTileID&, - const style::Style&, + const RenderStyle&, const CollisionTile*, const GeometryTile& tile) const; @@ -66,7 +63,7 @@ private: const RenderedQueryOptions& options, const GeometryTileData&, const CanonicalTileID&, - const style::Style&, + const RenderStyle&, const float bearing, const float pixelsToTileUnits) const; |