blob: ea9cf919420c7a38a0b79cc7261b53abe91bde68 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comdc731fd2010-12-23 15:19:47 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comdc731fd2010-12-23 15:19:47 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@google.comdc731fd2010-12-23 15:19:47 +000010#ifndef SkBitmapCache_DEFINED
11#define SkBitmapCache_DEFINED
12
13#include "SkBitmap.h"
14
15class SkBitmapCache : SkNoncopyable {
16public:
17 SkBitmapCache(int maxEntries);
18 ~SkBitmapCache();
19
20 bool find(const void* buffer, size_t len, SkBitmap*) const;
21 void add(const void* buffer, size_t len, const SkBitmap&);
22
23private:
24 int fEntryCount;
25 const int fMaxEntries;
26
27 struct Entry;
28 mutable Entry* fHead;
29 mutable Entry* fTail;
30
31 inline Entry* detach(Entry*) const;
32 inline void attachToHead(Entry*) const;
33
34#ifdef SK_DEBUG
35 void validate() const;
36#else
37 void validate() const {}
38#endif
39
40 class AutoValidate : SkNoncopyable {
41 public:
42 AutoValidate(const SkBitmapCache* bc) : fBC(bc) { bc->validate(); }
43 ~AutoValidate() { fBC->validate(); }
44 private:
45 const SkBitmapCache* fBC;
46 };
47};
48
49#endif
50