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

Unified Diff: cc/trees/layer_tree_host_common.h

Issue 2834123002: cc: Replace render surface layer list with a render surface list (Closed)
Patch Set: Address review comments Created 3 years, 8 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/trees/debug_rect_history.cc ('k') | cc/trees/layer_tree_host_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_common.h
diff --git a/cc/trees/layer_tree_host_common.h b/cc/trees/layer_tree_host_common.h
index 81c1710c7c0a00ef3b4eb5278e3940571c03d758..d05bf59bd9fb6b18fc3eec84a79c4b90089787bf 100644
--- a/cc/trees/layer_tree_host_common.h
+++ b/cc/trees/layer_tree_host_common.h
@@ -74,7 +74,7 @@ class CC_EXPORT LayerTreeHostCommon {
int max_texture_size,
bool can_render_to_separate_surface,
bool can_adjust_raster_scales,
- LayerImplList* render_surface_layer_list,
+ RenderSurfaceList* render_surface_list,
PropertyTrees* property_trees);
LayerImpl* root_layer;
@@ -90,7 +90,7 @@ class CC_EXPORT LayerTreeHostCommon {
int max_texture_size;
bool can_render_to_separate_surface;
bool can_adjust_raster_scales;
- LayerImplList* render_surface_layer_list;
+ RenderSurfaceList* render_surface_list;
PropertyTrees* property_trees;
};
@@ -100,18 +100,18 @@ class CC_EXPORT LayerTreeHostCommon {
const gfx::Size& device_viewport_size,
const gfx::Transform& device_transform,
float device_scale_factor,
- LayerImplList* render_surface_layer_list);
+ RenderSurfaceList* render_surface_list);
CalcDrawPropsImplInputsForTesting(LayerImpl* root_layer,
const gfx::Size& device_viewport_size,
const gfx::Transform& device_transform,
- LayerImplList* render_surface_layer_list);
+ RenderSurfaceList* render_surface_list);
CalcDrawPropsImplInputsForTesting(LayerImpl* root_layer,
const gfx::Size& device_viewport_size,
- LayerImplList* render_surface_layer_list);
+ RenderSurfaceList* render_surface_list);
CalcDrawPropsImplInputsForTesting(LayerImpl* root_layer,
const gfx::Size& device_viewport_size,
float device_scale_factor,
- LayerImplList* render_surface_layer_list);
+ RenderSurfaceList* render_surface_list);
};
static int CalculateLayerJitter(LayerImpl* scrolling_layer);
« no previous file with comments | « cc/trees/debug_rect_history.cc ('k') | cc/trees/layer_tree_host_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698