aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/text/GrTextBlobCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/text/GrTextBlobCache.h')
-rw-r--r--src/gpu/text/GrTextBlobCache.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gpu/text/GrTextBlobCache.h b/src/gpu/text/GrTextBlobCache.h
index b41d401aee..a174c9cf90 100644
--- a/src/gpu/text/GrTextBlobCache.h
+++ b/src/gpu/text/GrTextBlobCache.h
@@ -99,7 +99,12 @@ public:
}
struct PurgeBlobMessage {
- uint32_t fID;
+ PurgeBlobMessage(uint32_t blobID, uint32_t contextUniqueID)
+ : fBlobID(blobID), fContextID(contextUniqueID) {}
+ bool shouldSend(uint32_t inboxID) const { return fContextID == inboxID; }
+
+ uint32_t fBlobID;
+ uint32_t fContextID;
};
static void PostPurgeBlobMessage(uint32_t blobID, uint32_t cacheID);