Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: include/gpu/GrContext.h

Issue 672753002: Delete unused method aliases and texture flag. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: try again Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | include/gpu/GrTexture.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrContext.h
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h
index ca5f62af720c849306af13d7f9c07ac75a9375ea..4a82537c8077404e4b98d485c1e6a15097858728 100644
--- a/include/gpu/GrContext.h
+++ b/include/gpu/GrContext.h
@@ -122,10 +122,6 @@ public:
* video memory that can be held in the cache.
*/
void getResourceCacheLimits(int* maxResources, size_t* maxResourceBytes) const;
- SK_ATTR_DEPRECATED("This function has been renamed to getResourceCacheLimits().")
- void getTextureCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
- this->getResourceCacheLimits(maxTextures, maxTextureBytes);
- }
/**
* Gets the current GPU resource cache usage.
@@ -137,20 +133,6 @@ public:
*/
void getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const;
- SK_ATTR_DEPRECATED("Use getResourceCacheUsage().")
- size_t getGpuTextureCacheBytes() const {
- size_t bytes;
- this->getResourceCacheUsage(NULL, &bytes);
- return bytes;
- }
-
- SK_ATTR_DEPRECATED("Use getResourceCacheUsage().")
- int getGpuTextureCacheResourceCount() const {
- int count;
- this->getResourceCacheUsage(&count, NULL);
- return count;
- }
-
/**
* Specify the GPU resource cache limits. If the current cache exceeds either
* of these, it will be purged (LRU) to keep the cache within these limits.
@@ -161,10 +143,6 @@ public:
* that can be held in the cache.
*/
void setResourceCacheLimits(int maxResources, size_t maxResourceBytes);
- SK_ATTR_DEPRECATED("This function has been renamed to setResourceCacheLimits().")
- void setTextureCacheLimits(int maxTextures, size_t maxTextureBytes) {
- this->setResourceCacheLimits(maxTextures, maxTextureBytes);
- }
/**
* Frees GPU created by the context. Can be called to reduce GPU memory
« no previous file with comments | « no previous file | include/gpu/GrTexture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698