| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PIXEL_REF_MAP_H_ | 5 #ifndef CC_RESOURCES_PIXEL_REF_MAP_H_ |
| 6 #define CC_RESOURCES_PIXEL_REF_MAP_H_ | 6 #define CC_RESOURCES_PIXEL_REF_MAP_H_ |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
| 12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "cc/base/cc_export.h" | 14 #include "cc/base/cc_export.h" |
| 15 #include "third_party/skia/include/core/SkPicture.h" | 15 #include "third_party/skia/include/core/SkPicture.h" |
| 16 #include "ui/gfx/geometry/rect.h" | 16 #include "ui/gfx/geometry/rect.h" |
| 17 #include "ui/gfx/geometry/size.h" | 17 #include "ui/gfx/geometry/size.h" |
| 18 | 18 |
| 19 class SkPixelRef; | 19 class SkPixelRef; |
| 20 | 20 |
| 21 namespace cc { | 21 namespace cc { |
| 22 | 22 |
| 23 class Picture; | 23 class Picture; |
| 24 class DisplayItemList; |
| 24 | 25 |
| 25 typedef std::pair<int, int> PixelRefMapKey; | 26 typedef std::pair<int, int> PixelRefMapKey; |
| 26 typedef std::vector<SkPixelRef*> PixelRefs; | 27 typedef std::vector<SkPixelRef*> PixelRefs; |
| 27 typedef base::hash_map<PixelRefMapKey, PixelRefs> PixelRefHashmap; | 28 typedef base::hash_map<PixelRefMapKey, PixelRefs> PixelRefHashmap; |
| 28 | 29 |
| 29 // This class is used and owned by cc Picture class. It is used to gather pixel | 30 // This class is used and owned by cc Picture class. It is used to gather pixel |
| 30 // refs which would happen after record. It takes in |cell_size| to decide how | 31 // refs which would happen after record. It takes in |cell_size| to decide how |
| 31 // big each grid cell should be. | 32 // big each grid cell should be. |
| 32 class CC_EXPORT PixelRefMap { | 33 class CC_EXPORT PixelRefMap { |
| 33 public: | 34 public: |
| 34 explicit PixelRefMap(const gfx::Size& cell_size); | 35 explicit PixelRefMap(const gfx::Size& cell_size); |
| 35 ~PixelRefMap(); | 36 ~PixelRefMap(); |
| 36 void GatherPixelRefsFromPicture(SkPicture* picture); | 37 void GatherPixelRefsFromPicture(SkPicture* picture); |
| 37 | 38 |
| 38 bool empty() const { return data_hash_map_.empty(); } | 39 bool empty() const { return data_hash_map_.empty(); } |
| 39 | 40 |
| 40 // This iterator imprecisely returns the set of pixel refs that are needed to | 41 // This iterator imprecisely returns the set of pixel refs that are needed to |
| 41 // raster this layer rect from this picture. Internally, pixel refs are | 42 // raster this layer rect from this picture. Internally, pixel refs are |
| 42 // clumped into tile grid buckets, so there may be false positives. | 43 // clumped into tile grid buckets, so there may be false positives. |
| 43 class CC_EXPORT Iterator { | 44 class CC_EXPORT Iterator { |
| 44 public: | 45 public: |
| 45 // Default iterator constructor that is used as place holder for invalid | 46 // Default iterator constructor that is used as place holder for invalid |
| 46 // Iterator. | 47 // Iterator. |
| 47 Iterator(); | 48 Iterator(); |
| 48 Iterator(const gfx::Rect& layer_rect, const Picture* picture); | 49 Iterator(const gfx::Rect& layer_rect, const Picture* picture); |
| 50 Iterator(const gfx::Rect& layer_rect, const DisplayItemList* picture); |
| 49 ~Iterator(); | 51 ~Iterator(); |
| 50 | 52 |
| 51 SkPixelRef* operator->() const { | 53 SkPixelRef* operator->() const { |
| 52 DCHECK_LT(current_index_, current_pixel_refs_->size()); | 54 DCHECK_LT(current_index_, current_pixel_refs_->size()); |
| 53 return (*current_pixel_refs_)[current_index_]; | 55 return (*current_pixel_refs_)[current_index_]; |
| 54 } | 56 } |
| 55 | 57 |
| 56 SkPixelRef* operator*() const { | 58 SkPixelRef* operator*() const { |
| 57 DCHECK_LT(current_index_, current_pixel_refs_->size()); | 59 DCHECK_LT(current_index_, current_pixel_refs_->size()); |
| 58 return (*current_pixel_refs_)[current_index_]; | 60 return (*current_pixel_refs_)[current_index_]; |
| 59 } | 61 } |
| 60 | 62 |
| 61 Iterator& operator++(); | 63 Iterator& operator++(); |
| 62 operator bool() const { | 64 operator bool() const { |
| 63 return current_index_ < current_pixel_refs_->size(); | 65 return current_index_ < current_pixel_refs_->size(); |
| 64 } | 66 } |
| 65 | 67 |
| 66 private: | 68 private: |
| 69 void PointToFirstPixelRef(const gfx::Rect& query_rect); |
| 70 |
| 67 static base::LazyInstance<PixelRefs> empty_pixel_refs_; | 71 static base::LazyInstance<PixelRefs> empty_pixel_refs_; |
| 68 const PixelRefMap* target_pixel_ref_map_; | 72 const PixelRefMap* target_pixel_ref_map_; |
| 69 const PixelRefs* current_pixel_refs_; | 73 const PixelRefs* current_pixel_refs_; |
| 70 unsigned current_index_; | 74 unsigned current_index_; |
| 71 | 75 |
| 72 gfx::Rect layer_rect_; | 76 gfx::Rect map_layer_rect_; |
| 73 | 77 |
| 74 gfx::Point min_point_; | 78 gfx::Point min_point_; |
| 75 gfx::Point max_point_; | 79 gfx::Point max_point_; |
| 76 int current_x_; | 80 int current_x_; |
| 77 int current_y_; | 81 int current_y_; |
| 78 }; | 82 }; |
| 79 | 83 |
| 80 private: | 84 private: |
| 81 gfx::Point min_pixel_cell_; | 85 gfx::Point min_pixel_cell_; |
| 82 gfx::Point max_pixel_cell_; | 86 gfx::Point max_pixel_cell_; |
| 83 gfx::Size cell_size_; | 87 gfx::Size cell_size_; |
| 84 | 88 |
| 85 PixelRefHashmap data_hash_map_; | 89 PixelRefHashmap data_hash_map_; |
| 86 }; | 90 }; |
| 87 | 91 |
| 88 } // namespace cc | 92 } // namespace cc |
| 89 | 93 |
| 90 #endif // CC_RESOURCES_PIXEL_REF_MAP_H_ | 94 #endif // CC_RESOURCES_PIXEL_REF_MAP_H_ |
| OLD | NEW |