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

Unified Diff: cc/trees/layer_tree_impl.h

Issue 1430363002: List all child surfaces (including occluded) in CompositorFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
Index: cc/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index 60ef91e2302df204c9b463faa7e36d1f10db0f52..1ae22b73d2d0710d77728c899919e7ad775c334e 100644
--- a/cc/trees/layer_tree_impl.h
+++ b/cc/trees/layer_tree_impl.h
@@ -334,6 +334,12 @@ class CC_EXPORT LayerTreeImpl {
void RemoveLayerWithCopyOutputRequest(LayerImpl* layer);
const std::vector<LayerImpl*>& LayersWithCopyOutputRequest() const;
+ void AddSurfaceLayer(LayerImpl* layer);
+ void RemoveSurfaceLayer(LayerImpl* layer);
+ const std::vector<LayerImpl*>& SurfaceLayers() const {
+ return surface_layers_;
+ }
+
int current_render_surface_list_id() const {
return render_surface_layer_list_id_;
}
@@ -464,6 +470,7 @@ class CC_EXPORT LayerTreeImpl {
std::vector<PictureLayerImpl*> picture_layers_;
std::vector<LayerImpl*> layers_with_copy_output_request_;
+ std::vector<LayerImpl*> surface_layers_;
// List of visible layers for the most recently prepared frame.
LayerImplList render_surface_layer_list_;

Powered by Google App Engine
This is Rietveld 408576698