1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_TILES_PICTURE_LAYER_TILING_SET_H_
#define CC_TILES_PICTURE_LAYER_TILING_SET_H_
#include <stddef.h>
#include <memory>
#include <set>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "cc/base/region.h"
#include "cc/tiles/picture_layer_tiling.h"
#include "cc/tiles/tiling_set_coverage_iterator.h"
#include "ui/gfx/geometry/size.h"
namespace base {
namespace trace_event {
class TracedValue;
}
}
namespace cc {
class CC_EXPORT PictureLayerTilingSet {
public:
enum TilingRangeType {
HIGHER_THAN_HIGH_RES,
HIGH_RES,
BETWEEN_HIGH_AND_LOW_RES,
LOW_RES,
LOWER_THAN_LOW_RES
};
struct TilingRange {
TilingRange(size_t start, size_t end) : start(start), end(end) {}
size_t start;
size_t end;
};
static std::unique_ptr<PictureLayerTilingSet> Create(
WhichTree tree,
PictureLayerTilingClient* client,
int tiling_interest_area_padding,
float skewport_target_time_in_seconds,
int skewport_extrapolation_limit_in_screen_pixels,
float max_preraster_distance);
PictureLayerTilingSet(const PictureLayerTilingSet&) = delete;
~PictureLayerTilingSet();
PictureLayerTilingSet& operator=(const PictureLayerTilingSet&) = delete;
const PictureLayerTilingClient* client() const { return client_; }
void CleanUpTilings(
float min_acceptable_high_res_scale_key,
float max_acceptable_high_res_scale_key,
const std::vector<raw_ptr<PictureLayerTiling, VectorExperimental>>&
needed_tilings,
PictureLayerTilingSet* twin_set);
void RemoveNonIdealTilings();
// This function is called on the active tree during activation.
void UpdateTilingsToCurrentRasterSourceForActivation(
scoped_refptr<RasterSource> raster_source,
const PictureLayerTilingSet* pending_twin_set,
const Region& layer_invalidation,
float minimum_contents_scale,
float maximum_contents_scale);
// This function is called on the sync tree during commit.
void UpdateTilingsToCurrentRasterSourceForCommit(
scoped_refptr<RasterSource> raster_source,
const Region& layer_invalidation,
float minimum_contents_scale,
float maximum_contents_scale);
// Invalidates the region on all tilings and recreates the tiles as needed.
void Invalidate(const Region& layer_invalidation);
PictureLayerTiling* AddTiling(const gfx::AxisTransform2d& raster_transform,
scoped_refptr<RasterSource> raster_source,
bool can_use_lcd_text = false);
size_t num_tilings() const { return tilings_.size(); }
// all_tiles_done() can return false negatives because:
// 1) PictureLayerTiling::all_tiles_done() could return false negatives;
// 2) it's not re-computed when a PictureLayerTiling is removed from
// the set.
bool all_tiles_done() const { return all_tiles_done_; }
void set_all_tiles_done(bool done) { all_tiles_done_ = done; }
int NumHighResTilings() const;
PictureLayerTiling* tiling_at(size_t idx) { return tilings_[idx].get(); }
const PictureLayerTiling* tiling_at(size_t idx) const {
return tilings_[idx].get();
}
WhichTree tree() const { return tree_; }
PictureLayerTiling* FindTilingWithScaleKey(float scale_key) const;
PictureLayerTiling* FindTilingWithResolution(TileResolution resolution) const;
// If a tiling exists whose scale is within |snap_to_existing_tiling_ratio|
// ratio of |start_scale|, then return that tiling. Otherwise, return null.
// If multiple tilings match the criteria, return the one with the least ratio
// to |start_scale|.
PictureLayerTiling* FindTilingWithNearestScaleKey(
float start_scale,
float snap_to_existing_tiling_ratio) const;
void MarkAllTilingsNonIdeal();
// Returns the maximum contents scale of all tilings, or 0 if no tilings
// exist. Note that this returns the maximum of x and y scales depending on
// the aspect ratio.
float GetMaximumContentsScale() const;
// Remove one tiling.
void Remove(PictureLayerTiling* tiling);
// Removes all tilings with a contents scale key < |minimum_scale_key|.
void RemoveTilingsBelowScaleKey(float minimum_scale_key);
// Removes all tilings with a contents scale key > |maximum_scale_key|.
void RemoveTilingsAboveScaleKey(float maximum_scale);
// Removes all resources (tilings, raster source).
void ReleaseAllResources();
// Remove all tilings.
void RemoveAllTilings();
// Remove all tiles; keep all tilings.
void RemoveAllTiles();
// Update the rects and priorities for tiles based on the given information.
// Returns true if PrepareTiles is required.
bool UpdateTilePriorities(const gfx::Rect& required_rect_in_layer_space,
float ideal_contents_scale,
double current_frame_time_in_seconds,
const Occlusion& occlusion_in_layer_space,
bool can_require_tiles_for_activation);
void GetAllPrioritizedTilesForTracing(
std::vector<PrioritizedTile>* prioritized_tiles) const;
using CoverageIterator = TilingSetCoverageIterator<PictureLayerTiling>;
CoverageIterator Cover(const gfx::Rect& coverage_rect,
float coverage_scale,
float ideal_contents_scale);
void AsValueInto(base::trace_event::TracedValue* array) const;
size_t GPUMemoryUsageInBytes() const;
TilingRange GetTilingRange(TilingRangeType type) const;
protected:
struct FrameVisibleRect {
FrameVisibleRect(const gfx::Rect& rect, double time_in_seconds)
: visible_rect_in_layer_space(rect),
frame_time_in_seconds(time_in_seconds) {}
gfx::Rect visible_rect_in_layer_space;
double frame_time_in_seconds;
};
struct StateSinceLastTilePriorityUpdate {
class AutoClear {
public:
explicit AutoClear(StateSinceLastTilePriorityUpdate* state_to_clear)
: state_to_clear_(state_to_clear) {}
~AutoClear() { *state_to_clear_ = StateSinceLastTilePriorityUpdate(); }
private:
// RAW_PTR_EXCLUSION: Performance reasons: on-stack pointer + based on
// analysis of sampling profiler data
// (PictureLayerTilingSet::UpdateTilePriorities -> creates AutoClear
// on stack).
RAW_PTR_EXCLUSION StateSinceLastTilePriorityUpdate* state_to_clear_;
};
StateSinceLastTilePriorityUpdate() = default;
bool invalidated = false;
bool added_tilings = false;
bool tiling_needs_update = false;
};
explicit PictureLayerTilingSet(
WhichTree tree,
PictureLayerTilingClient* client,
int tiling_interest_area_padding,
float skewport_target_time_in_seconds,
int skewport_extrapolation_limit_in_screen_pixels,
float max_preraster_distance);
void CopyTilingsAndPropertiesFromPendingTwin(
const PictureLayerTilingSet* pending_twin_set,
scoped_refptr<RasterSource> raster_source,
const Region& layer_invalidation);
void VerifyTilings(const PictureLayerTilingSet* pending_twin_set) const;
bool TilingsNeedUpdate(const gfx::Rect& required_rect_in_layer_space,
double current_frame_time_in_Seconds);
gfx::Rect ComputeSkewport(const gfx::Rect& visible_rect_in_layer_space,
double current_frame_time_in_seconds,
float ideal_contents_scale);
gfx::Rect ComputeSoonBorderRect(const gfx::Rect& visible_rect_in_layer_space,
float ideal_contents_scale);
void UpdatePriorityRects(const gfx::Rect& visible_rect_in_layer_space,
double current_frame_time_in_seconds,
float ideal_contents_scale);
std::vector<std::unique_ptr<PictureLayerTiling>> tilings_;
bool all_tiles_done_ : 1 = true;
const int tiling_interest_area_padding_;
const float skewport_target_time_in_seconds_;
const int skewport_extrapolation_limit_in_screen_pixels_;
WhichTree tree_;
raw_ptr<PictureLayerTilingClient> client_;
const float max_preraster_distance_;
// State saved for computing velocities based on finite differences.
// .back() of the vector refers to the most recent FrameVisibleRect.
std::vector<FrameVisibleRect> visible_rect_history_;
StateSinceLastTilePriorityUpdate state_since_last_tile_priority_update_;
scoped_refptr<RasterSource> raster_source_;
gfx::Rect visible_rect_in_layer_space_;
gfx::Rect skewport_rect_in_layer_space_;
gfx::Rect soon_border_rect_in_layer_space_;
gfx::Rect eventually_rect_in_layer_space_;
friend class Iterator;
};
} // namespace cc
#endif // CC_TILES_PICTURE_LAYER_TILING_SET_H_
|