| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 4 * | 3 * |
| 5 * 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 |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 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 "SkBitmap.h" | 12 #include "SkBitmap.h" |
| 12 #include "SkFlattenable.h" | 13 #include "SkPoint.h" |
| 13 #include "SkRefCnt.h" | 14 #include "SkRefCnt.h" |
| 14 #include "SkTDArray.h" | 15 #include "SkTDArray.h" |
| 15 #include "SkAtomics.h" | 16 #include "SkTypes.h" |
| 16 | 17 |
| 17 /** | 18 /** |
| 18 * 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... |
| 19 * (1) get access a bitmap in the heap | 20 * (1) get access a bitmap in the heap |
| 20 * (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). |
| 21 */ | 22 */ |
| 22 class SkBitmapHeapEntry : SkNoncopyable { | 23 class SkBitmapHeapEntry : SkNoncopyable { |
| 23 public: | 24 public: |
| 24 ~SkBitmapHeapEntry(); | 25 ~SkBitmapHeapEntry(); |
| 25 | 26 |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 const int32_t fOwnerCount; | 290 const int32_t fOwnerCount; |
| 290 size_t fBytesAllocated; | 291 size_t fBytesAllocated; |
| 291 | 292 |
| 292 bool fDeferAddingOwners; | 293 bool fDeferAddingOwners; |
| 293 SkTDArray<int> fDeferredEntries; | 294 SkTDArray<int> fDeferredEntries; |
| 294 | 295 |
| 295 typedef SkBitmapHeapReader INHERITED; | 296 typedef SkBitmapHeapReader INHERITED; |
| 296 }; | 297 }; |
| 297 | 298 |
| 298 #endif // SkBitmapHeap_DEFINED | 299 #endif // SkBitmapHeap_DEFINED |
| OLD | NEW |