summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/tile_pyramid.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-05-30 13:58:59 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-06-05 19:38:08 -0700
commit74af076d405a089fac70a47e41fe92d04d97fc50 (patch)
tree29e4a76538da9a9455f711a25e7d5ddc1dece625 /src/mbgl/renderer/tile_pyramid.hpp
parent1cf46d93b944095726396acf84649519e2fd96ad (diff)
downloadqtlocation-mapboxgl-74af076d405a089fac70a47e41fe92d04d97fc50.tar.gz
[core] Split RenderStyle from Style
Diffstat (limited to 'src/mbgl/renderer/tile_pyramid.hpp')
-rw-r--r--src/mbgl/renderer/tile_pyramid.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mbgl/renderer/tile_pyramid.hpp b/src/mbgl/renderer/tile_pyramid.hpp
index b99c94d065..d989306414 100644
--- a/src/mbgl/renderer/tile_pyramid.hpp
+++ b/src/mbgl/renderer/tile_pyramid.hpp
@@ -21,14 +21,11 @@ namespace mbgl {
class Painter;
class TransformState;
class RenderTile;
+class RenderStyle;
class RenderedQueryOptions;
class SourceQueryOptions;
class TileParameters;
-namespace style {
-class Style;
-} // namespace style
-
class TilePyramid {
public:
TilePyramid();
@@ -55,7 +52,7 @@ public:
std::unordered_map<std::string, std::vector<Feature>>
queryRenderedFeatures(const ScreenLineString& geometry,
const TransformState& transformState,
- const style::Style& style,
+ const RenderStyle& style,
const RenderedQueryOptions& options) const;
std::vector<Feature> querySourceFeatures(const SourceQueryOptions&) const;