102d798a2a8d6234716d4c25c8ab6fe7bb812e52
[platform/framework/web/crosswalk.git] / src / cc / resources / picture_pile_base.h
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_RESOURCES_PICTURE_PILE_BASE_H_
6 #define CC_RESOURCES_PICTURE_PILE_BASE_H_
7
8 #include <bitset>
9 #include <list>
10 #include <utility>
11
12 #include "base/containers/hash_tables.h"
13 #include "base/memory/ref_counted.h"
14 #include "cc/base/cc_export.h"
15 #include "cc/base/region.h"
16 #include "cc/base/tiling_data.h"
17 #include "cc/resources/picture.h"
18 #include "ui/gfx/size.h"
19
20 namespace base {
21 namespace debug {
22 class TracedValue;
23 }
24 class Value;
25 }
26
27 namespace cc {
28
29 class CC_EXPORT PicturePileBase : public base::RefCounted<PicturePileBase> {
30  public:
31   PicturePileBase();
32   explicit PicturePileBase(const PicturePileBase* other);
33   PicturePileBase(const PicturePileBase* other, unsigned thread_index);
34
35   gfx::Size tiling_size() const { return tiling_.tiling_size(); }
36   void SetMinContentsScale(float min_contents_scale);
37
38   // If non-empty, all pictures tiles inside this rect are recorded. There may
39   // be recordings outside this rect, but everything inside the rect is
40   // recorded.
41   gfx::Rect recorded_viewport() const { return recorded_viewport_; }
42
43   int num_tiles_x() const { return tiling_.num_tiles_x(); }
44   int num_tiles_y() const { return tiling_.num_tiles_y(); }
45   gfx::Rect tile_bounds(int x, int y) const { return tiling_.TileBounds(x, y); }
46   bool HasRecordingAt(int x, int y);
47   bool CanRaster(float contents_scale, const gfx::Rect& content_rect);
48
49   // If this pile contains any valid recordings. May have false positives.
50   bool HasRecordings() const { return has_any_recordings_; }
51
52   void set_is_mask(bool is_mask) { is_mask_ = is_mask; }
53   bool is_mask() const { return is_mask_; }
54
55   static void ComputeTileGridInfo(const gfx::Size& tile_grid_size,
56                                   SkTileGridFactory::TileGridInfo* info);
57
58   void SetTileGridSize(const gfx::Size& tile_grid_size);
59   TilingData& tiling() { return tiling_; }
60
61   void AsValueInto(base::debug::TracedValue* array) const;
62
63  protected:
64   class CC_EXPORT PictureInfo {
65    public:
66     enum {
67       INVALIDATION_FRAMES_TRACKED = 32
68     };
69
70     PictureInfo();
71     ~PictureInfo();
72
73     bool Invalidate(int frame_number);
74     bool NeedsRecording(int frame_number, int distance_to_visible);
75     PictureInfo CloneForThread(int thread_index) const;
76     void SetPicture(scoped_refptr<Picture> picture);
77     Picture* GetPicture() const;
78
79     float GetInvalidationFrequencyForTesting() const {
80       return GetInvalidationFrequency();
81     }
82
83    private:
84     void AdvanceInvalidationHistory(int frame_number);
85     float GetInvalidationFrequency() const;
86
87     int last_frame_number_;
88     scoped_refptr<Picture> picture_;
89     std::bitset<INVALIDATION_FRAMES_TRACKED> invalidation_history_;
90   };
91
92   typedef std::pair<int, int> PictureMapKey;
93   typedef base::hash_map<PictureMapKey, PictureInfo> PictureMap;
94
95   virtual ~PicturePileBase();
96
97   int buffer_pixels() const { return tiling_.border_texels(); }
98   void Clear();
99
100   gfx::Rect PaddedRect(const PictureMapKey& key);
101   gfx::Rect PadRect(const gfx::Rect& rect);
102
103   // An internal CanRaster check that goes to the picture_map rather than
104   // using the recorded_viewport hint.
105   bool CanRasterSlowTileCheck(const gfx::Rect& layer_rect) const;
106
107   // A picture pile is a tiled set of pictures. The picture map is a map of tile
108   // indices to picture infos.
109   PictureMap picture_map_;
110   TilingData tiling_;
111   gfx::Rect recorded_viewport_;
112   float min_contents_scale_;
113   SkTileGridFactory::TileGridInfo tile_grid_info_;
114   SkColor background_color_;
115   int slow_down_raster_scale_factor_for_debug_;
116   bool contents_opaque_;
117   bool contents_fill_bounds_completely_;
118   bool show_debug_picture_borders_;
119   bool clear_canvas_with_debug_color_;
120   // A hint about whether there are any recordings. This may be a false
121   // positive.
122   bool has_any_recordings_;
123   bool is_mask_;
124
125  private:
126   void SetBufferPixels(int buffer_pixels);
127
128   friend class base::RefCounted<PicturePileBase>;
129   DISALLOW_COPY_AND_ASSIGN(PicturePileBase);
130 };
131
132 }  // namespace cc
133
134 #endif  // CC_RESOURCES_PICTURE_PILE_BASE_H_