By default purge resources that haven't been used for 64 flushes
authorbsalomon <bsalomon@google.com>
Tue, 29 Sep 2015 14:25:49 +0000 (07:25 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 29 Sep 2015 14:25:49 +0000 (07:25 -0700)
BUG=skia:4258

Committed: https://skia.googlesource.com/skia/+/85047175508a24f43eef49359bed215a2a3bb104

R=robertphillips@google.com

Committed: https://skia.googlesource.com/skia/+/71d0c33068d41878cc3117f3761f49300f6b3d54

Committed: https://skia.googlesource.com/skia/+/bd783cd5b62118277b75933c3cd7b9097129259a

Review URL: https://codereview.chromium.org/1316233003

src/gpu/GrResourceCache.h

index 2412174..3220ba5 100644 (file)
@@ -58,9 +58,8 @@ public:
     static const size_t kDefaultMaxSize             = 96 * (1 << 20);
     // Default number of flushes a budgeted resources can go unused in the cache before it is
     // purged. Large values disable the feature (as the ring buffer of flush timestamps would be
-    // large). This is currently the default until we decide to enable this feature
-    // of the cache by default.
-    static const int    kDefaultMaxUnusedFlushes    = 1024;
+    // large).
+    static const int    kDefaultMaxUnusedFlushes    = 64;
 
     /** Used to access functionality needed by GrGpuResource for lifetime management. */
     class ResourceAccess;