aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/SkImageCacherator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkImageCacherator.h')
-rw-r--r--src/core/SkImageCacherator.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/SkImageCacherator.h b/src/core/SkImageCacherator.h
index 9b554731af..b07fc6a270 100644
--- a/src/core/SkImageCacherator.h
+++ b/src/core/SkImageCacherator.h
@@ -29,8 +29,6 @@ class SkImageCacherator {
public:
virtual ~SkImageCacherator() {}
- virtual SkImageInfo buildCacheInfo() const = 0;
-
#if SK_SUPPORT_GPU
// Returns the texture proxy. If the cacherator is generating the texture and wants to cache it,
// it should use the passed in key (if the key is valid).
@@ -41,12 +39,6 @@ public:
SkImage::CachingHint, bool willBeMipped,
SkColorSpace* dstColorSpace,
GrTextureMaker::AllowedTexGenType genType) = 0;
-
- // Returns the color space of the texture that would be returned if you called lockTexture.
- // Separate code path to allow querying of the color space for textures that cached (even
- // externally).
- virtual sk_sp<SkColorSpace> getColorSpace(GrContext*, SkColorSpace* dstColorSpace) = 0;
- virtual void makeCacheKeyFromOrigKey(const GrUniqueKey& origKey, GrUniqueKey* cacheKey) = 0;
#endif
};