| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CC_RESOURCES_DISPLAY_ITEM_LIST_H_ | 5 #ifndef CC_RESOURCES_DISPLAY_ITEM_LIST_H_ |
| 6 #define CC_RESOURCES_DISPLAY_ITEM_LIST_H_ | 6 #define CC_RESOURCES_DISPLAY_ITEM_LIST_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/trace_event/trace_event.h" | 10 #include "base/trace_event/trace_event.h" |
| 11 #include "cc/base/cc_export.h" | 11 #include "cc/base/cc_export.h" |
| 12 #include "cc/base/scoped_ptr_vector.h" | 12 #include "cc/base/scoped_ptr_vector.h" |
| 13 #include "cc/resources/display_item.h" | 13 #include "cc/resources/display_item.h" |
| 14 #include "cc/resources/pixel_ref_map.h" | |
| 15 #include "skia/ext/refptr.h" | 14 #include "skia/ext/refptr.h" |
| 16 #include "third_party/skia/include/core/SkPicture.h" | 15 #include "third_party/skia/include/core/SkPicture.h" |
| 17 #include "ui/gfx/geometry/rect.h" | 16 #include "ui/gfx/geometry/rect.h" |
| 18 | 17 |
| 19 class SkCanvas; | 18 class SkCanvas; |
| 20 class SkDrawPictureCallback; | 19 class SkDrawPictureCallback; |
| 21 | 20 |
| 22 namespace cc { | 21 namespace cc { |
| 23 | 22 |
| 24 class CC_EXPORT DisplayItemList | 23 class CC_EXPORT DisplayItemList |
| (...skipping 13 matching lines...) Expand all Loading... |
| 38 void CreateAndCacheSkPicture(); | 37 void CreateAndCacheSkPicture(); |
| 39 | 38 |
| 40 bool IsSuitableForGpuRasterization() const; | 39 bool IsSuitableForGpuRasterization() const; |
| 41 int ApproximateOpCount() const; | 40 int ApproximateOpCount() const; |
| 42 size_t PictureMemoryUsage() const; | 41 size_t PictureMemoryUsage() const; |
| 43 | 42 |
| 44 scoped_refptr<base::trace_event::ConvertableToTraceFormat> AsValue() const; | 43 scoped_refptr<base::trace_event::ConvertableToTraceFormat> AsValue() const; |
| 45 | 44 |
| 46 void EmitTraceSnapshot() const; | 45 void EmitTraceSnapshot() const; |
| 47 | 46 |
| 48 void GatherPixelRefs(const gfx::Size& grid_cell_size); | |
| 49 | |
| 50 private: | 47 private: |
| 51 DisplayItemList(); | 48 DisplayItemList(); |
| 52 ~DisplayItemList(); | 49 ~DisplayItemList(); |
| 53 ScopedPtrVector<DisplayItem> items_; | 50 ScopedPtrVector<DisplayItem> items_; |
| 54 skia::RefPtr<SkPicture> picture_; | 51 skia::RefPtr<SkPicture> picture_; |
| 55 | 52 |
| 56 gfx::Rect layer_rect_; | 53 gfx::Rect layer_rect_; |
| 57 bool is_suitable_for_gpu_rasterization_; | 54 bool is_suitable_for_gpu_rasterization_; |
| 58 int approximate_op_count_; | 55 int approximate_op_count_; |
| 59 | 56 |
| 60 scoped_ptr<PixelRefMap> pixel_refs_; | |
| 61 | |
| 62 friend class base::RefCountedThreadSafe<DisplayItemList>; | 57 friend class base::RefCountedThreadSafe<DisplayItemList>; |
| 63 friend class PixelRefMap::Iterator; | |
| 64 DISALLOW_COPY_AND_ASSIGN(DisplayItemList); | 58 DISALLOW_COPY_AND_ASSIGN(DisplayItemList); |
| 65 }; | 59 }; |
| 66 | 60 |
| 67 } // namespace cc | 61 } // namespace cc |
| 68 | 62 |
| 69 #endif // CC_RESOURCES_DISPLAY_ITEM_LIST_H_ | 63 #endif // CC_RESOURCES_DISPLAY_ITEM_LIST_H_ |
| OLD | NEW |