OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 #ifndef SkBitmapHeap_DEFINED | 8 #ifndef SkBitmapHeap_DEFINED |
9 #define SkBitmapHeap_DEFINED | 9 #define SkBitmapHeap_DEFINED |
10 | 10 |
11 #include "SkAtomics.h" | 11 #include "../private/SkAtomics.h" |
12 #include "SkBitmap.h" | 12 #include "SkBitmap.h" |
13 #include "SkPoint.h" | 13 #include "SkPoint.h" |
14 #include "SkRefCnt.h" | 14 #include "SkRefCnt.h" |
15 #include "SkTDArray.h" | 15 #include "SkTDArray.h" |
16 #include "SkTypes.h" | 16 #include "SkTypes.h" |
17 | 17 |
18 /** | 18 /** |
19 * SkBitmapHeapEntry provides users of SkBitmapHeap (using internal storage) wit
h a means to... | 19 * SkBitmapHeapEntry provides users of SkBitmapHeap (using internal storage) wit
h a means to... |
20 * (1) get access a bitmap in the heap | 20 * (1) get access a bitmap in the heap |
21 * (2) indicate they are done with bitmap by releasing their reference (if they
were an owner). | 21 * (2) indicate they are done with bitmap by releasing their reference (if they
were an owner). |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 const int32_t fOwnerCount; | 290 const int32_t fOwnerCount; |
291 size_t fBytesAllocated; | 291 size_t fBytesAllocated; |
292 | 292 |
293 bool fDeferAddingOwners; | 293 bool fDeferAddingOwners; |
294 SkTDArray<int> fDeferredEntries; | 294 SkTDArray<int> fDeferredEntries; |
295 | 295 |
296 typedef SkBitmapHeapReader INHERITED; | 296 typedef SkBitmapHeapReader INHERITED; |
297 }; | 297 }; |
298 | 298 |
299 #endif // SkBitmapHeap_DEFINED | 299 #endif // SkBitmapHeap_DEFINED |
OLD | NEW |