summaryrefslogtreecommitdiff
path: root/src/mbgl/layout/layout.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/layout/layout.hpp')
-rw-r--r--src/mbgl/layout/layout.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mbgl/layout/layout.hpp b/src/mbgl/layout/layout.hpp
index 601c5fb184..1deaf13193 100644
--- a/src/mbgl/layout/layout.hpp
+++ b/src/mbgl/layout/layout.hpp
@@ -2,6 +2,7 @@
#include <mbgl/renderer/image_atlas.hpp>
#include <mbgl/text/glyph_atlas.hpp>
+#include <mbgl/tile/geometry_tile_data.hpp>
#include <memory>
namespace mbgl {
@@ -13,7 +14,6 @@ class FeatureIndex;
class Layout {
public:
- Layout() = default;
virtual ~Layout() = default;
virtual void createBucket(const ImagePositions&,
@@ -32,4 +32,11 @@ public:
virtual bool hasDependencies() const = 0;
};
+class LayoutParameters {
+public:
+ const BucketParameters& bucketParameters;
+ GlyphDependencies& glyphDependencies;
+ ImageDependencies& imageDependencies;
+};
+
} // namespace mbgl