diff options
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); |