summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_update_parameters.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/style_update_parameters.hpp')
-rw-r--r--src/mbgl/style/style_update_parameters.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mbgl/style/style_update_parameters.hpp b/src/mbgl/style/style_update_parameters.hpp
index 0a646219f0..9ea7e112eb 100644
--- a/src/mbgl/style/style_update_parameters.hpp
+++ b/src/mbgl/style/style_update_parameters.hpp
@@ -7,9 +7,10 @@ namespace mbgl {
class TransformState;
class Worker;
-class TexturePool;
+class FileSource;
class MapData;
class Style;
+namespace gl { class TexturePool; }
class StyleUpdateParameters {
public:
@@ -18,7 +19,8 @@ public:
TimePoint animationTime_,
const TransformState& transformState_,
Worker& worker_,
- TexturePool& texturePool_,
+ FileSource& fileSource_,
+ gl::TexturePool& texturePool_,
bool shouldReparsePartialTiles_,
const MapMode mode_,
MapData& data_,
@@ -28,6 +30,7 @@ public:
animationTime(animationTime_),
transformState(transformState_),
worker(worker_),
+ fileSource(fileSource_),
texturePool(texturePool_),
shouldReparsePartialTiles(shouldReparsePartialTiles_),
mode(mode_),
@@ -39,7 +42,8 @@ public:
TimePoint animationTime;
const TransformState& transformState;
Worker& worker;
- TexturePool& texturePool;
+ FileSource& fileSource;
+ gl::TexturePool& texturePool;
bool shouldReparsePartialTiles;
const MapMode mode;