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

Unified Diff: cc/surfaces/surface_aggregator.cc

Issue 2098953003: Make cc::CompositorFrames movable [Part 2 of 2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed exo unittests Created 4 years, 6 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/surfaces/surface_aggregator.h ('k') | cc/surfaces/surface_aggregator_perftest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/surfaces/surface_aggregator.cc
diff --git a/cc/surfaces/surface_aggregator.cc b/cc/surfaces/surface_aggregator.cc
index 066ffc8adb902fb4f194d3c9fae5ae64c64d6a16..62a85fc0e35b96e1efb669184e83f38af8f6c6e8 100644
--- a/cc/surfaces/surface_aggregator.cc
+++ b/cc/surfaces/surface_aggregator.cc
@@ -188,10 +188,8 @@ void SurfaceAggregator::HandleSurfaceQuad(
Surface* surface = manager_->GetSurfaceForId(surface_id);
if (!surface)
return;
- const CompositorFrame* frame = surface->GetEligibleFrame();
- if (!frame)
- return;
- const DelegatedFrameData* frame_data = frame->delegated_frame_data.get();
+ const CompositorFrame& frame = surface->GetEligibleFrame();
+ const DelegatedFrameData* frame_data = frame.delegated_frame_data.get();
if (!frame_data)
return;
@@ -563,11 +561,9 @@ gfx::Rect SurfaceAggregator::PrewalkTree(SurfaceId surface_id,
return gfx::Rect();
}
contained_surfaces_[surface_id] = surface->frame_index();
- const CompositorFrame* surface_frame = surface->GetEligibleFrame();
- if (!surface_frame)
- return gfx::Rect();
+ const CompositorFrame& surface_frame = surface->GetEligibleFrame();
const DelegatedFrameData* frame_data =
- surface_frame->delegated_frame_data.get();
+ surface_frame.delegated_frame_data.get();
if (!frame_data)
return gfx::Rect();
int child_id = 0;
@@ -687,7 +683,7 @@ gfx::Rect SurfaceAggregator::PrewalkTree(SurfaceId surface_id,
}
CHECK(debug_weak_this.get());
- for (const auto& surface_id : surface_frame->metadata.referenced_surfaces) {
+ for (const auto& surface_id : surface_frame.metadata.referenced_surfaces) {
if (!contained_surfaces_.count(surface_id)) {
result->undrawn_surfaces.insert(surface_id);
PrewalkTree(surface_id, false, RenderPassId(), result);
@@ -724,19 +720,19 @@ void SurfaceAggregator::CopyUndrawnSurfaces(PrewalkResult* prewalk_result) {
Surface* surface = manager_->GetSurfaceForId(surface_id);
if (!surface)
continue;
- const CompositorFrame* surface_frame = surface->GetEligibleFrame();
- if (!surface_frame)
+ const CompositorFrame& surface_frame = surface->GetEligibleFrame();
+ if (!surface_frame.delegated_frame_data)
continue;
bool surface_has_copy_requests = false;
for (const auto& render_pass :
- surface_frame->delegated_frame_data->render_pass_list) {
+ surface_frame.delegated_frame_data->render_pass_list) {
surface_has_copy_requests |= !render_pass->copy_requests.empty();
}
if (!surface_has_copy_requests) {
// Children are not necessarily included in undrawn_surfaces (because
// they weren't referenced directly from a drawn surface), but may have
// copy requests, so make sure to check them as well.
- for (const auto& child_id : surface_frame->metadata.referenced_surfaces) {
+ for (const auto& child_id : surface_frame.metadata.referenced_surfaces) {
// Don't iterate over the child Surface if it was already listed as a
// child of a different Surface, or in the case where there's infinite
// recursion.
@@ -747,7 +743,7 @@ void SurfaceAggregator::CopyUndrawnSurfaces(PrewalkResult* prewalk_result) {
}
} else {
SurfaceSet::iterator it = referenced_surfaces_.insert(surface_id).first;
- CopyPasses(surface_frame->delegated_frame_data.get(), surface);
+ CopyPasses(surface_frame.delegated_frame_data.get(), surface);
referenced_surfaces_.erase(it);
}
}
@@ -770,23 +766,20 @@ void SurfaceAggregator::PropagateCopyRequestPasses() {
}
}
-std::unique_ptr<CompositorFrame> SurfaceAggregator::Aggregate(
- SurfaceId surface_id) {
+CompositorFrame SurfaceAggregator::Aggregate(SurfaceId surface_id) {
Surface* surface = manager_->GetSurfaceForId(surface_id);
DCHECK(surface);
contained_surfaces_[surface_id] = surface->frame_index();
- const CompositorFrame* root_surface_frame = surface->GetEligibleFrame();
- if (!root_surface_frame)
- return nullptr;
+ const CompositorFrame& root_surface_frame = surface->GetEligibleFrame();
+ if (!root_surface_frame.delegated_frame_data)
+ return CompositorFrame();
TRACE_EVENT0("cc", "SurfaceAggregator::Aggregate");
- std::unique_ptr<CompositorFrame> frame(new CompositorFrame);
- frame->delegated_frame_data = base::WrapUnique(new DelegatedFrameData);
-
- DCHECK(root_surface_frame->delegated_frame_data);
+ CompositorFrame frame;
+ frame.delegated_frame_data = base::WrapUnique(new DelegatedFrameData);
- dest_resource_list_ = &frame->delegated_frame_data->resource_list;
- dest_pass_list_ = &frame->delegated_frame_data->render_pass_list;
+ dest_resource_list_ = &frame.delegated_frame_data->resource_list;
+ dest_pass_list_ = &frame.delegated_frame_data->render_pass_list;
valid_surfaces_.clear();
PrewalkResult prewalk_result;
@@ -797,7 +790,7 @@ std::unique_ptr<CompositorFrame> SurfaceAggregator::Aggregate(
CopyUndrawnSurfaces(&prewalk_result);
SurfaceSet::iterator it = referenced_surfaces_.insert(surface_id).first;
- CopyPasses(root_surface_frame->delegated_frame_data.get(), surface);
+ CopyPasses(root_surface_frame.delegated_frame_data.get(), surface);
referenced_surfaces_.erase(it);
moved_pixel_passes_.clear();
@@ -807,7 +800,7 @@ std::unique_ptr<CompositorFrame> SurfaceAggregator::Aggregate(
DCHECK(referenced_surfaces_.empty());
if (dest_pass_list_->empty())
- return nullptr;
+ return CompositorFrame();
dest_pass_list_ = NULL;
ProcessAddedAndRemovedSurfaces();
@@ -819,7 +812,7 @@ std::unique_ptr<CompositorFrame> SurfaceAggregator::Aggregate(
++it) {
Surface* surface = manager_->GetSurfaceForId(it->first);
if (surface)
- surface->TakeLatencyInfo(&frame->metadata.latency_info);
+ surface->TakeLatencyInfo(&frame.metadata.latency_info);
}
// TODO(jamesr): Aggregate all resource references into the returned frame's
« no previous file with comments | « cc/surfaces/surface_aggregator.h ('k') | cc/surfaces/surface_aggregator_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698