Home
last modified time | relevance | path

Searched defs:RectsBlurRec (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/skia/src/core/
H A DSkMaskCache.cpp142 struct RectsBlurRec : public SkResourceCache::Rec { struct
143 RectsBlurRec(RectsBlurKey key, const SkMask& mask, SkCachedData* data) in RectsBlurRec() argument
148 ~RectsBlurRec() override { in ~RectsBlurRec()
152 RectsBlurKey fKey;
153 MaskValue fValue;
155 const Key& getKey() const override { return fKey; } in getKey()
156 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); } in bytesUsed()
157 const char* getCategory() const override { return "rects-blur"; } in getCategory()
158 SkDiscardableMemory* diagnostic_only_getDiscardable() const override { in diagnostic_only_getDiscardable()
162 static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextData) { in Visitor()