summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/texture_pool.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/gl/texture_pool.hpp')
-rw-r--r--src/mbgl/gl/texture_pool.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/gl/texture_pool.hpp b/src/mbgl/gl/texture_pool.hpp
index 3c38343f62..1cdcdf220c 100644
--- a/src/mbgl/gl/texture_pool.hpp
+++ b/src/mbgl/gl/texture_pool.hpp
@@ -18,14 +18,14 @@ struct TextureReleaser {
void operator()(GLuint) const;
};
-using SharedTexture = std_experimental::unique_resource<GLuint, TextureReleaser>;
+using PooledTexture = std_experimental::unique_resource<GLuint, TextureReleaser>;
class TexturePool : private util::noncopyable {
public:
TexturePool();
~TexturePool();
- SharedTexture acquireTexture(gl::ObjectStore&);
+ PooledTexture acquireTexture(gl::ObjectStore&);
private:
friend TextureReleaser;