Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: cc/playback/display_item_list.cc

Issue 2225563002: Reland "Raster display item lists via a visual rect RTree." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync to head. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/playback/display_item_list.h ('k') | cc/playback/display_item_list_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/playback/display_item_list.cc
diff --git a/cc/playback/display_item_list.cc b/cc/playback/display_item_list.cc
index 1f2c6bed0c076ab723e302282da556ff4d98b1df..02548275d5112629f391ecffde9ca3644245652d 100644
--- a/cc/playback/display_item_list.cc
+++ b/cc/playback/display_item_list.cc
@@ -26,6 +26,7 @@
#include "third_party/skia/include/core/SkPictureRecorder.h"
#include "third_party/skia/include/utils/SkPictureUtils.h"
#include "ui/gfx/geometry/rect.h"
+#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/gfx/skia_util.h"
namespace cc {
@@ -43,41 +44,42 @@ bool DisplayItemsTracingEnabled() {
return tracing_enabled;
}
+bool GetCanvasClipBounds(SkCanvas* canvas, gfx::Rect* clip_bounds) {
+ SkRect canvas_clip_bounds;
+ if (!canvas->getClipBounds(&canvas_clip_bounds))
+ return false;
+ *clip_bounds = ToEnclosingRect(gfx::SkRectToRectF(canvas_clip_bounds));
+ return true;
+}
+
const int kDefaultNumDisplayItemsToReserve = 100;
} // namespace
-DisplayItemList::Inputs::Inputs(gfx::Rect layer_rect,
- const DisplayItemListSettings& settings)
+DisplayItemList::Inputs::Inputs(const DisplayItemListSettings& settings)
: items(LargestDisplayItemSize(),
LargestDisplayItemSize() * kDefaultNumDisplayItemsToReserve),
- settings(settings),
- layer_rect(layer_rect),
- is_suitable_for_gpu_rasterization(true) {}
+ settings(settings) {}
DisplayItemList::Inputs::~Inputs() {}
scoped_refptr<DisplayItemList> DisplayItemList::Create(
- const gfx::Rect& layer_rect,
const DisplayItemListSettings& settings) {
- return make_scoped_refptr(new DisplayItemList(
- layer_rect, settings,
- !settings.use_cached_picture || DisplayItemsTracingEnabled()));
+ return make_scoped_refptr(new DisplayItemList(settings));
}
scoped_refptr<DisplayItemList> DisplayItemList::CreateFromProto(
const proto::DisplayItemList& proto,
ClientPictureCache* client_picture_cache,
std::vector<uint32_t>* used_engine_picture_ids) {
- gfx::Rect layer_rect = ProtoToRect(proto.layer_rect());
scoped_refptr<DisplayItemList> list =
- DisplayItemList::Create(ProtoToRect(proto.layer_rect()),
- DisplayItemListSettings(proto.settings()));
+ DisplayItemList::Create(DisplayItemListSettings(proto.settings()));
for (int i = 0; i < proto.items_size(); i++) {
const proto::DisplayItem& item_proto = proto.items(i);
+ const gfx::Rect visual_rect = ProtoToRect(proto.visual_rects(i));
DisplayItemProtoFactory::AllocateAndConstruct(
- layer_rect, list.get(), item_proto, client_picture_cache,
+ visual_rect, list.get(), item_proto, client_picture_cache,
used_engine_picture_ids);
}
@@ -86,23 +88,8 @@ scoped_refptr<DisplayItemList> DisplayItemList::CreateFromProto(
return list;
}
-DisplayItemList::DisplayItemList(gfx::Rect layer_rect,
- const DisplayItemListSettings& settings,
- bool retain_individual_display_items)
- : retain_individual_display_items_(retain_individual_display_items),
- approximate_op_count_(0),
- picture_memory_usage_(0),
- inputs_(layer_rect, settings) {
- if (inputs_.settings.use_cached_picture) {
- SkRTreeFactory factory;
- recorder_.reset(new SkPictureRecorder());
-
- SkCanvas* canvas = recorder_->beginRecording(
- inputs_.layer_rect.width(), inputs_.layer_rect.height(), &factory);
- canvas->translate(-inputs_.layer_rect.x(), -inputs_.layer_rect.y());
- canvas->clipRect(gfx::RectToSkRect(inputs_.layer_rect));
- }
-}
+DisplayItemList::DisplayItemList(const DisplayItemListSettings& settings)
+ : inputs_(settings) {}
DisplayItemList::~DisplayItemList() {
}
@@ -110,14 +97,18 @@ DisplayItemList::~DisplayItemList() {
void DisplayItemList::ToProtobuf(proto::DisplayItemList* proto) {
// The flattened SkPicture approach is going away, and the proto
// doesn't currently support serializing that flattened picture.
- DCHECK(retain_individual_display_items_);
-
- RectToProto(inputs_.layer_rect, proto->mutable_layer_rect());
inputs_.settings.ToProtobuf(proto->mutable_settings());
DCHECK_EQ(0, proto->items_size());
- for (const auto& item : inputs_.items)
+ DCHECK_EQ(0, proto->visual_rects_size());
+ DCHECK(inputs_.items.size() == inputs_.visual_rects.size())
+ << "items.size() " << inputs_.items.size() << " visual_rects.size() "
+ << inputs_.visual_rects.size();
+ int i = 0;
+ for (const auto& item : inputs_.items) {
+ RectToProto(inputs_.visual_rects[i++], proto->add_visual_rects());
item.ToProtobuf(proto->add_items());
+ }
}
void DisplayItemList::Raster(SkCanvas* canvas,
@@ -125,7 +116,6 @@ void DisplayItemList::Raster(SkCanvas* canvas,
const gfx::Rect& canvas_target_playback_rect,
float contents_scale) const {
canvas->save();
-
if (!canvas_target_playback_rect.IsEmpty()) {
// canvas_target_playback_rect is specified in device space. We can't
// use clipRect because canvas CTM will be applied on it. Use clipRegion
@@ -134,7 +124,6 @@ void DisplayItemList::Raster(SkCanvas* canvas,
device_clip.setRect(gfx::RectToSkIRect(canvas_target_playback_rect));
canvas->clipRegion(device_clip);
}
-
canvas->scale(contents_scale, contents_scale);
Raster(canvas, callback);
canvas->restore();
@@ -142,25 +131,19 @@ void DisplayItemList::Raster(SkCanvas* canvas,
void DisplayItemList::Raster(SkCanvas* canvas,
SkPicture::AbortCallback* callback) const {
- if (!inputs_.settings.use_cached_picture) {
- for (const auto& item : inputs_.items)
- item.Raster(canvas, callback);
- } else {
- DCHECK(picture_);
-
- canvas->save();
- canvas->translate(inputs_.layer_rect.x(), inputs_.layer_rect.y());
- if (callback) {
- // If we have a callback, we need to call |draw()|, |drawPicture()|
- // doesn't take a callback. This is used by |AnalysisCanvas| to early
- // out.
- picture_->playback(canvas, callback);
- } else {
- // Prefer to call |drawPicture()| on the canvas since it could place the
- // entire picture on the canvas instead of parsing the skia operations.
- canvas->drawPicture(picture_.get());
- }
- canvas->restore();
+ gfx::Rect canvas_playback_rect;
+ if (!GetCanvasClipBounds(canvas, &canvas_playback_rect))
+ return;
+
+ std::vector<size_t> indices;
+ rtree_.Search(canvas_playback_rect, &indices);
+ for (size_t index : indices) {
+ inputs_.items[index].Raster(canvas, callback);
+ // We use a callback during solid color analysis on the compositor thread to
+ // break out early. Since we're handling a sequence of pictures via rtree
+ // query results ourselves, we have to respect the callback and early out.
+ if (callback && callback->abort())
+ break;
}
}
@@ -170,91 +153,51 @@ void DisplayItemList::GrowCurrentBeginItemVisualRect(
inputs_.visual_rects[inputs_.begin_item_indices.back()].Union(visual_rect);
}
-void DisplayItemList::ProcessAppendedItem(const DisplayItem* item) {
- if (inputs_.settings.use_cached_picture) {
- DCHECK(recorder_);
- item->Raster(recorder_->getRecordingCanvas(), nullptr);
- }
- if (!retain_individual_display_items_) {
- inputs_.items.Clear();
- }
-}
-
-void DisplayItemList::RasterIntoCanvas(const DisplayItem& item) {
- DCHECK(recorder_);
- DCHECK(!retain_individual_display_items_);
-
- item.Raster(recorder_->getRecordingCanvas(), nullptr);
-}
-
-bool DisplayItemList::RetainsIndividualDisplayItems() const {
- return retain_individual_display_items_;
-}
-
void DisplayItemList::Finalize() {
TRACE_EVENT0("cc", "DisplayItemList::Finalize");
- // TODO(dtrainor): Need to deal with serializing visual_rects_.
+ // TODO(dtrainor): Need to deal with serializing inputs_.visual_rects.
// http://crbug.com/568757.
- DCHECK(!retain_individual_display_items_ ||
- inputs_.items.size() == inputs_.visual_rects.size())
+ DCHECK(inputs_.items.size() == inputs_.visual_rects.size())
<< "items.size() " << inputs_.items.size() << " visual_rects.size() "
<< inputs_.visual_rects.size();
-
- // TODO(vmpstr): Build and make use of an RTree from the visual
- // rects. For now we just clear them out since we won't ever need
- // them to stick around post-Finalize. http://crbug.com/527245
- // This clears both the vector and the vector's capacity, since visual_rects_
- // won't be used anymore.
- std::vector<gfx::Rect>().swap(inputs_.visual_rects);
-
- if (inputs_.settings.use_cached_picture) {
- // Convert to an SkPicture for faster rasterization.
- DCHECK(inputs_.settings.use_cached_picture);
- DCHECK(!picture_);
- picture_ = recorder_->finishRecordingAsPicture();
- DCHECK(picture_);
- picture_memory_usage_ =
- SkPictureUtils::ApproximateBytesUsed(picture_.get());
- recorder_.reset();
- }
+ rtree_.Build(inputs_.visual_rects);
+
+ // TODO(wkorman): Restore the below, potentially with a switch to allow
+ // clearing visual rects except for Blimp engine. http://crbug.com/633750
+ // if (!retain_visual_rects_)
+ // // This clears both the vector and the vector's capacity, since
+ // // visual_rects won't be used anymore.
+ // std::vector<gfx::Rect>().swap(inputs_.visual_rects);
}
bool DisplayItemList::IsSuitableForGpuRasterization() const {
- return inputs_.is_suitable_for_gpu_rasterization;
+ // TODO(wkorman): This is more permissive than Picture's implementation, since
+ // none of the items might individually trigger a veto even though they
+ // collectively have enough "bad" operations that a corresponding Picture
+ // would get vetoed. See crbug.com/513016.
+ return inputs_.all_items_are_suitable_for_gpu_rasterization;
}
int DisplayItemList::ApproximateOpCount() const {
- if (retain_individual_display_items_)
- return approximate_op_count_;
- return picture_ ? picture_->approximateOpCount() : 0;
+ return approximate_op_count_;
}
size_t DisplayItemList::ApproximateMemoryUsage() const {
- // We double-count in this case. Produce zero to avoid being misleading.
- if (inputs_.settings.use_cached_picture && retain_individual_display_items_)
- return 0;
-
- DCHECK(!inputs_.settings.use_cached_picture || picture_);
-
size_t memory_usage = sizeof(*this);
size_t external_memory_usage = 0;
- if (retain_individual_display_items_) {
- // Warning: this double-counts SkPicture data if use_cached_picture is
- // also true.
- for (const auto& item : inputs_.items) {
- external_memory_usage += item.ExternalMemoryUsage();
- }
+ // Warning: this double-counts SkPicture data if use_cached_picture is
+ // also true.
+ for (const auto& item : inputs_.items) {
+ external_memory_usage += item.ExternalMemoryUsage();
}
// Memory outside this class due to |items_|.
memory_usage += inputs_.items.GetCapacityInBytes() + external_memory_usage;
- // Memory outside this class due to |picture|.
- memory_usage += picture_memory_usage_;
-
// TODO(jbroman): Does anything else owned by this class substantially
// contribute to memory usage?
+ // TODO(vmpstr): Probably DiscardableImageMap is worth counting here.
return memory_usage;
}
@@ -281,22 +224,20 @@ DisplayItemList::AsValue(bool include_items) const {
}
state->EndArray(); // "items".
}
- state->SetValue("layer_rect", MathUtil::AsValue(inputs_.layer_rect));
+ state->SetValue("layer_rect", MathUtil::AsValue(rtree_.GetBounds()));
state->EndDictionary(); // "params".
- if (!inputs_.layer_rect.IsEmpty()) {
- SkPictureRecorder recorder;
- SkCanvas* canvas = recorder.beginRecording(inputs_.layer_rect.width(),
- inputs_.layer_rect.height());
- canvas->translate(-inputs_.layer_rect.x(), -inputs_.layer_rect.y());
- canvas->clipRect(gfx::RectToSkRect(inputs_.layer_rect));
- Raster(canvas, NULL, gfx::Rect(), 1.f);
- sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
-
- std::string b64_picture;
- PictureDebugUtil::SerializeAsBase64(picture.get(), &b64_picture);
- state->SetString("skp64", b64_picture);
- }
+ SkPictureRecorder recorder;
+ gfx::Rect bounds = rtree_.GetBounds();
+ SkCanvas* canvas = recorder.beginRecording(bounds.width(), bounds.height());
+ canvas->translate(-bounds.x(), -bounds.y());
+ canvas->clipRect(gfx::RectToSkRect(bounds));
+ Raster(canvas, nullptr, gfx::Rect(), 1.f);
+ sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
+
+ std::string b64_picture;
+ PictureDebugUtil::SerializeAsBase64(picture.get(), &b64_picture);
+ state->SetString("skp64", b64_picture);
return std::move(state);
}
@@ -314,19 +255,11 @@ void DisplayItemList::EmitTraceSnapshot() const {
void DisplayItemList::GenerateDiscardableImagesMetadata() {
// This should be only called once, and only after CreateAndCacheSkPicture.
DCHECK(image_map_.empty());
- DCHECK(!inputs_.settings.use_cached_picture || picture_);
- if (inputs_.settings.use_cached_picture && !picture_->willPlayBackBitmaps())
- return;
- // The cached picture is translated by -layer_rect_.origin during record,
- // so we need to offset that back in order to get right positioning for
- // images.
+ gfx::Rect bounds = rtree_.GetBounds();
DiscardableImageMap::ScopedMetadataGenerator generator(
- &image_map_,
- gfx::Size(inputs_.layer_rect.right(), inputs_.layer_rect.bottom()));
- Raster(generator.canvas(), nullptr,
- gfx::Rect(inputs_.layer_rect.right(), inputs_.layer_rect.bottom()),
- 1.f);
+ &image_map_, gfx::Size(bounds.right(), bounds.bottom()));
+ Raster(generator.canvas(), nullptr, gfx::Rect(), 1.f);
}
void DisplayItemList::GetDiscardableImagesInRect(
« no previous file with comments | « cc/playback/display_item_list.h ('k') | cc/playback/display_item_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698