summaryrefslogtreecommitdiff
path: root/src/mbgl/gl
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-07 22:42:18 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-07 22:42:18 +0300
commitcfac92460675034dca5a134173d9b48f64b75f7e (patch)
tree31fd7053350fcd95ccebbed43d66d50f761d6f07 /src/mbgl/gl
parent20fe1d2be4302ce1d6b604d185068c069c9345ad (diff)
downloadqtlocation-mapboxgl-cfac92460675034dca5a134173d9b48f64b75f7e.tar.gz
[core] s/SharedTexture/PooledTexture/
Diffstat (limited to 'src/mbgl/gl')
-rw-r--r--src/mbgl/gl/texture_pool.cpp4
-rw-r--r--src/mbgl/gl/texture_pool.hpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mbgl/gl/texture_pool.cpp b/src/mbgl/gl/texture_pool.cpp
index 53e29b907b..c4984b0186 100644
--- a/src/mbgl/gl/texture_pool.cpp
+++ b/src/mbgl/gl/texture_pool.cpp
@@ -67,8 +67,8 @@ TexturePool::TexturePool() : impl(std::make_unique<Impl>()) {
TexturePool::~TexturePool() {
}
-SharedTexture TexturePool::acquireTexture(gl::ObjectStore& store) {
- return SharedTexture { impl->acquireTexture(store) , { this } };
+PooledTexture TexturePool::acquireTexture(gl::ObjectStore& store) {
+ return PooledTexture { impl->acquireTexture(store) , { this } };
}
} // namespace gl
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;