From a6522d4a5aa894d260c3fbb246deba95b66061fd Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Fri, 28 Nov 2014 17:23:05 -0800 Subject: =?UTF-8?q?Texturepool=20=E2=87=A2=20TexturePool=20(fixes=20#655)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/mbgl/map/map.hpp | 4 ++-- include/mbgl/map/raster_tile_data.hpp | 4 ++-- include/mbgl/map/source.hpp | 6 +++--- include/mbgl/map/tile_parser.hpp | 10 +++++----- include/mbgl/map/vector_tile_data.hpp | 6 +++--- include/mbgl/renderer/raster_bucket.hpp | 2 +- include/mbgl/util/raster.hpp | 6 +++--- include/mbgl/util/texture_pool.hpp | 25 +++++++++++++++++++++++++ include/mbgl/util/texturepool.hpp | 25 ------------------------- 9 files changed, 44 insertions(+), 44 deletions(-) create mode 100644 include/mbgl/util/texture_pool.hpp delete mode 100644 include/mbgl/util/texturepool.hpp (limited to 'include') diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp index 1f4715339d..e97c63138c 100644 --- a/include/mbgl/map/map.hpp +++ b/include/mbgl/map/map.hpp @@ -24,7 +24,7 @@ class Style; class StyleLayer; class StyleLayerGroup; class StyleSource; -class Texturepool; +class TexturePool; class FileSource; class View; @@ -184,7 +184,7 @@ private: util::ptr glyphStore; SpriteAtlas spriteAtlas; util::ptr sprite; - util::ptr texturepool; + util::ptr texturePool; Painter painter; diff --git a/include/mbgl/map/raster_tile_data.hpp b/include/mbgl/map/raster_tile_data.hpp index cbbd864aae..42070d9c61 100644 --- a/include/mbgl/map/raster_tile_data.hpp +++ b/include/mbgl/map/raster_tile_data.hpp @@ -10,13 +10,13 @@ namespace mbgl { class Painter; class SourceInfo; class StyleLayer; -class Texturepool; +class TexturePool; class RasterTileData : public TileData { friend class TileParser; public: - RasterTileData(Tile::ID const& id, Texturepool&, const SourceInfo&); + RasterTileData(Tile::ID const& id, TexturePool&, const SourceInfo&); ~RasterTileData(); virtual void parse(); diff --git a/include/mbgl/map/source.hpp b/include/mbgl/map/source.hpp index c36376fd5d..8976f67b05 100644 --- a/include/mbgl/map/source.hpp +++ b/include/mbgl/map/source.hpp @@ -23,7 +23,7 @@ class GlyphStore; class SpriteAtlas; class Sprite; class FileSource; -class Texturepool; +class TexturePool; class Style; class Painter; class StyleLayer; @@ -39,7 +39,7 @@ public: util::ptr