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.
5 #ifndef CC_RESOURCES_PICTURE_PILE_BASE_H_
6 #define CC_RESOURCES_PICTURE_PILE_BASE_H_
12 #include "base/containers/hash_tables.h"
13 #include "cc/base/cc_export.h"
14 #include "cc/base/region.h"
15 #include "cc/base/tiling_data.h"
16 #include "cc/resources/picture.h"
17 #include "ui/gfx/geometry/size.h"
28 class CC_EXPORT PicturePileBase
{
31 explicit PicturePileBase(const PicturePileBase
* other
);
33 gfx::Size
tiling_size() const { return tiling_
.tiling_size(); }
34 void SetMinContentsScale(float min_contents_scale
);
36 // If non-empty, all pictures tiles inside this rect are recorded. There may
37 // be recordings outside this rect, but everything inside the rect is
39 gfx::Rect
recorded_viewport() const { return recorded_viewport_
; }
41 int num_tiles_x() const { return tiling_
.num_tiles_x(); }
42 int num_tiles_y() const { return tiling_
.num_tiles_y(); }
43 gfx::Rect
tile_bounds(int x
, int y
) const { return tiling_
.TileBounds(x
, y
); }
44 bool HasRecordingAt(int x
, int y
);
46 bool is_solid_color() const { return is_solid_color_
; }
47 SkColor
solid_color() const { return solid_color_
; }
49 void set_is_mask(bool is_mask
) { is_mask_
= is_mask
; }
51 static void ComputeTileGridInfo(const gfx::Size
& tile_grid_size
,
52 SkTileGridFactory::TileGridInfo
* info
);
54 void SetTileGridSize(const gfx::Size
& tile_grid_size
);
55 TilingData
& tiling() { return tiling_
; }
57 SkTileGridFactory::TileGridInfo
GetTileGridInfoForTesting() const {
58 return tile_grid_info_
;
61 void SetRecordedViewportForTesting(const gfx::Rect
& viewport
) {
62 recorded_viewport_
= viewport
;
64 void SetHasAnyRecordingsForTesting(bool has_recordings
) {
65 has_any_recordings_
= has_recordings
;
69 class CC_EXPORT PictureInfo
{
72 INVALIDATION_FRAMES_TRACKED
= 32
78 bool Invalidate(int frame_number
);
79 bool NeedsRecording(int frame_number
, int distance_to_visible
);
80 void SetPicture(scoped_refptr
<Picture
> picture
);
81 const Picture
* GetPicture() const;
83 float GetInvalidationFrequencyForTesting() const {
84 return GetInvalidationFrequency();
88 void AdvanceInvalidationHistory(int frame_number
);
89 float GetInvalidationFrequency() const;
91 int last_frame_number_
;
92 scoped_refptr
<const Picture
> picture_
;
93 std::bitset
<INVALIDATION_FRAMES_TRACKED
> invalidation_history_
;
96 typedef std::pair
<int, int> PictureMapKey
;
97 typedef base::hash_map
<PictureMapKey
, PictureInfo
> PictureMap
;
99 virtual ~PicturePileBase();
101 int buffer_pixels() const { return tiling_
.border_texels(); }
104 gfx::Rect
PaddedRect(const PictureMapKey
& key
) const;
105 gfx::Rect
PadRect(const gfx::Rect
& rect
) const;
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_
;
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
122 bool has_any_recordings_
;
124 bool is_solid_color_
;
125 SkColor solid_color_
;
128 friend class PicturePileImpl
;
130 void SetBufferPixels(int buffer_pixels
);
132 DISALLOW_COPY_AND_ASSIGN(PicturePileBase
);
137 #endif // CC_RESOURCES_PICTURE_PILE_BASE_H_