diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-26 20:11:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-26 20:11:07 +0300 |
commit | 07675230038a24dd251581591379c8fe5cc7bfd1 (patch) | |
tree | 1e4633730515af717ba93aef111f855de5cc9b38 /src/resources/atlas/textureatlas.h | |
parent | 17f34f00d37432dae207be3d55ec531a738eb065 (diff) | |
download | plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.gz plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.bz2 plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.xz plus-07675230038a24dd251581591379c8fe5cc7bfd1.zip |
Add memory count functions into MapLayer and SpecailLayer.
Also change all memory count functions into const methods.
Diffstat (limited to 'src/resources/atlas/textureatlas.h')
-rw-r--r-- | src/resources/atlas/textureatlas.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/atlas/textureatlas.h b/src/resources/atlas/textureatlas.h index aefa831d1..fce101f64 100644 --- a/src/resources/atlas/textureatlas.h +++ b/src/resources/atlas/textureatlas.h @@ -54,16 +54,16 @@ struct TextureAtlas final : public MemoryCounter A_DELETE_COPY(TextureAtlas) - int calcMemoryLocal() override final + int calcMemoryLocal() const override final { return sizeof(TextureAtlas) + items.capacity() * sizeof(AtlasItem*); } - int calcMemoryChilds(const int level) override final + int calcMemoryChilds(const int level) const override final { int sz = 0; - FOR_EACH (std::vector<AtlasItem*>::iterator, it, items) + FOR_EACH (std::vector<AtlasItem*>::const_iterator, it, items) { AtlasItem *const item = *it; sz += item->calcMemory(level + 1); |