Rename GrThreadSafeUniquelyKeyedProxyViewCache
Once triangulated paths are added this will no longer just be storing proxy views.
Bug: 1108408
Change-Id: I82fa47b0b85f738d9a25330c29bc2892c9bfeda4
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/323999
Reviewed-by: Brian Salomon <bsalomon@google.com>
Reviewed-by: Adlai Holler <adlai@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/GrContextThreadSafeProxyPriv.h b/src/gpu/GrContextThreadSafeProxyPriv.h
index 2a31f68..606aa16 100644
--- a/src/gpu/GrContextThreadSafeProxyPriv.h
+++ b/src/gpu/GrContextThreadSafeProxyPriv.h
@@ -39,12 +39,8 @@
GrTextBlobCache* getTextBlobCache() { return fProxy->fTextBlobCache.get(); }
const GrTextBlobCache* getTextBlobCache() const { return fProxy->fTextBlobCache.get(); }
- GrThreadSafeUniquelyKeyedProxyViewCache* threadSafeViewCache() {
- return fProxy->fThreadSafeViewCache.get();
- }
- const GrThreadSafeUniquelyKeyedProxyViewCache* threadSafeViewCache() const {
- return fProxy->fThreadSafeViewCache.get();
- }
+ GrThreadSafeCache* threadSafeCache() { return fProxy->fThreadSafeCache.get(); }
+ const GrThreadSafeCache* threadSafeCache() const { return fProxy->fThreadSafeCache.get(); }
void abandonContext() { fProxy->abandonContext(); }
bool abandoned() const { return fProxy->abandoned(); }