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

Side by Side Diff: bench/ImageCacheBench.cpp

Issue 950363002: Notify resource caches when pixelref genID goes stale (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update dox Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/core/SkBitmapCache.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "Benchmark.h" 8 #include "Benchmark.h"
9 #include "SkResourceCache.h" 9 #include "SkResourceCache.h"
10 10
11 namespace { 11 namespace {
12 static void* gGlobalAddress; 12 static void* gGlobalAddress;
13 class TestKey : public SkResourceCache::Key { 13 class TestKey : public SkResourceCache::Key {
14 public: 14 public:
15 intptr_t fValue; 15 intptr_t fValue;
16 16
17 TestKey(intptr_t value) : fValue(value) { 17 TestKey(intptr_t value) : fValue(value) {
18 this->init(&gGlobalAddress, sizeof(fValue)); 18 this->init(&gGlobalAddress, 0, sizeof(fValue));
19 } 19 }
20 }; 20 };
21 struct TestRec : public SkResourceCache::Rec { 21 struct TestRec : public SkResourceCache::Rec {
22 TestKey fKey; 22 TestKey fKey;
23 intptr_t fValue; 23 intptr_t fValue;
24 24
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {} 25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {}
26 26
27 const Key& getKey() const SK_OVERRIDE { return fKey; } 27 const Key& getKey() const SK_OVERRIDE { return fKey; }
28 size_t bytesUsed() const SK_OVERRIDE { return sizeof(fKey) + sizeof(fValue); } 28 size_t bytesUsed() const SK_OVERRIDE { return sizeof(fKey) + sizeof(fValue); }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 } 66 }
67 } 67 }
68 68
69 private: 69 private:
70 typedef Benchmark INHERITED; 70 typedef Benchmark INHERITED;
71 }; 71 };
72 72
73 /////////////////////////////////////////////////////////////////////////////// 73 ///////////////////////////////////////////////////////////////////////////////
74 74
75 DEF_BENCH( return new ImageCacheBench(); ) 75 DEF_BENCH( return new ImageCacheBench(); )
OLDNEW
« no previous file with comments | « no previous file | src/core/SkBitmapCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698