のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

Layout::purgeCaches

    874 void Layout::purgeCaches() {
    875     AutoMutex _l(gMinikinLock);
    876     LayoutCache& layoutCache = LayoutEngine::getInstance().layoutCache;
    877     layoutCache.clear();
    878     HbFaceCache& hbCache = LayoutEngine::getInstance().hbFaceCache;
    879     hbCache.mCache.clear();
    880 }
    121 class LayoutCache : private OnEntryRemoved<LayoutCacheKey, Layout*> {
    127     void clear() {
    128         mCache.clear();
    129     }