Chromium Code Reviews| Index: src/gpu/text/GrBatchFontCache.cpp |
| diff --git a/src/gpu/text/GrBatchFontCache.cpp b/src/gpu/text/GrBatchFontCache.cpp |
| index 8345b5cf4bbdc5d031cf73dda0220c0ec39a8a02..088e2783fba324209d8512326ce2f3fa28b1b5ba 100644 |
| --- a/src/gpu/text/GrBatchFontCache.cpp |
| +++ b/src/gpu/text/GrBatchFontCache.cpp |
| @@ -69,7 +69,7 @@ GrBatchFontCache::GrBatchFontCache(GrContext* context) |
| } |
| GrBatchFontCache::~GrBatchFontCache() { |
| - SkTDynamicHash<GrBatchTextStrike, GrFontDescKey>::Iter iter(&fCache); |
| + StrikeHash::Iter iter(&fCache); |
| while (!iter.done()) { |
| (*iter).fIsAbandoned = true; |
| (*iter).unref(); |
| @@ -81,7 +81,7 @@ GrBatchFontCache::~GrBatchFontCache() { |
| } |
| void GrBatchFontCache::freeAll() { |
| - SkTDynamicHash<GrBatchTextStrike, GrFontDescKey>::Iter iter(&fCache); |
| + StrikeHash::Iter iter(&fCache); |
| while (!iter.done()) { |
| (*iter).fIsAbandoned = true; |
| (*iter).unref(); |
| @@ -97,7 +97,7 @@ void GrBatchFontCache::freeAll() { |
| void GrBatchFontCache::HandleEviction(GrBatchAtlas::AtlasID id, void* ptr) { |
| GrBatchFontCache* fontCache = reinterpret_cast<GrBatchFontCache*>(ptr); |
| - SkTDynamicHash<GrBatchTextStrike, GrFontDescKey>::Iter iter(&fontCache->fCache); |
| + StrikeHash::Iter iter(&fontCache->fCache); |
| for (; !iter.done(); ++iter) { |
| GrBatchTextStrike* strike = &*iter; |
| strike->removeID(id); |
| @@ -105,7 +105,7 @@ void GrBatchFontCache::HandleEviction(GrBatchAtlas::AtlasID id, void* ptr) { |
| // clear out any empty strikes. We will preserve the strike whose call to addToAtlas |
| // triggered the eviction |
| if (strike != fontCache->fPreserveStrike && 0 == strike->fAtlasedGlyphs) { |
| - fontCache->fCache.remove(*(strike->fFontScalerKey)); |
| + fontCache->fCache.remove(GrBatchTextStrike::GetKey(*strike)); |
| strike->fIsAbandoned = true; |
| strike->unref(); |
| } |
| @@ -153,8 +153,8 @@ void GrBatchFontCache::setAtlasSizes_ForTesting(const GrBatchAtlasConfig configs |
| atlas and a position within that texture. |
| */ |
| -GrBatchTextStrike::GrBatchTextStrike(GrBatchFontCache* cache, const GrFontDescKey* key) |
| - : fFontScalerKey(SkRef(key)) |
| +GrBatchTextStrike::GrBatchTextStrike(GrBatchFontCache* cache, const SkDescriptor& key) |
|
bungeman-skia
2016/05/17 17:47:44
It seems like it would be good to mention that a c
bsalomon
2016/05/17 18:08:42
Added mention of this to the class description com
|
| + : fFontScalerKey(key) |
| , fPool(9/*start allocations at 512 bytes*/) |
| , fAtlasedGlyphs(0) |
| , fIsAbandoned(false) { |