summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/painter.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-27 13:44:46 -0700
committerGitHub <noreply@github.com>2016-06-27 13:44:46 -0700
commit8956179ce06bca099fca765ce6172980dfe7a998 (patch)
tree178bc722da840b3bbc19a35072aae3df6261701e /src/mbgl/renderer/painter.hpp
parentb8326870e1f3960b169746b0473326060bb6cf54 (diff)
downloadqtlocation-mapboxgl-8956179ce06bca099fca765ce6172980dfe7a998.tar.gz
[core] Merge TexturePool into ObjectStore; pool all textures (#5477)
Diffstat (limited to 'src/mbgl/renderer/painter.hpp')
-rw-r--r--src/mbgl/renderer/painter.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mbgl/renderer/painter.hpp b/src/mbgl/renderer/painter.hpp
index f19cfec229..1f511467d0 100644
--- a/src/mbgl/renderer/painter.hpp
+++ b/src/mbgl/renderer/painter.hpp
@@ -60,7 +60,6 @@ class CollisionBoxShader;
struct ClipID;
namespace util {
-class TexturePool;
class ObjectStore;
} // namespace util
@@ -86,7 +85,7 @@ struct FrameData {
class Painter : private util::noncopyable {
public:
- Painter(const TransformState&, gl::TexturePool&, gl::ObjectStore&);
+ Painter(const TransformState&, gl::ObjectStore&);
~Painter();
void render(const style::Style&,
@@ -179,7 +178,6 @@ private:
}();
const TransformState& state;
- gl::TexturePool& texturePool;
gl::ObjectStore& store;
FrameData frame;