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

Side by Side Diff: cc/layers/draw_properties.h

Issue 332873005: Rendering context information added to SharedQuadState (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Now plumbing rendering context IDs through WebLayerImpl Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | cc/layers/layer.h » ('j') | cc/layers/layer.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYERS_DRAW_PROPERTIES_H_ 5 #ifndef CC_LAYERS_DRAW_PROPERTIES_H_
6 #define CC_LAYERS_DRAW_PROPERTIES_H_ 6 #define CC_LAYERS_DRAW_PROPERTIES_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "ui/gfx/rect.h" 9 #include "ui/gfx/rect.h"
10 #include "ui/gfx/transform.h" 10 #include "ui/gfx/transform.h"
(...skipping 17 matching lines...) Expand all
28 contents_scale_y(1.f), 28 contents_scale_y(1.f),
29 num_descendants_that_draw_content(0), 29 num_descendants_that_draw_content(0),
30 num_unclipped_descendants(0), 30 num_unclipped_descendants(0),
31 layer_or_descendant_has_copy_request(false), 31 layer_or_descendant_has_copy_request(false),
32 has_child_with_a_scroll_parent(false), 32 has_child_with_a_scroll_parent(false),
33 sorted_for_recursion(false), 33 sorted_for_recursion(false),
34 index_of_first_descendants_addition(0), 34 index_of_first_descendants_addition(0),
35 num_descendants_added(0), 35 num_descendants_added(0),
36 index_of_first_render_surface_layer_list_addition(0), 36 index_of_first_render_surface_layer_list_addition(0),
37 num_render_surfaces_added(0), 37 num_render_surfaces_added(0),
38 last_drawn_render_surface_layer_list_id(0) {} 38 last_drawn_render_surface_layer_list_id(0),
39 context_id(0) {}
39 40
40 // Transforms objects from content space to target surface space, where 41 // Transforms objects from content space to target surface space, where
41 // this layer would be drawn. 42 // this layer would be drawn.
42 gfx::Transform target_space_transform; 43 gfx::Transform target_space_transform;
43 44
44 // Transforms objects from content space to screen space (viewport space). 45 // Transforms objects from content space to screen space (viewport space).
45 gfx::Transform screen_space_transform; 46 gfx::Transform screen_space_transform;
46 47
47 // DrawProperties::opacity may be different than LayerType::opacity, 48 // DrawProperties::opacity may be different than LayerType::opacity,
48 // particularly in the case when a RenderSurface re-parents the layer's 49 // particularly in the case when a RenderSurface re-parents the layer's
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 size_t num_render_surfaces_added; 122 size_t num_render_surfaces_added;
122 123
123 // Each time we generate a new render surface layer list, an ID is used to 124 // Each time we generate a new render surface layer list, an ID is used to
124 // identify it. |last_drawn_render_surface_layer_list_id| is set to the ID 125 // identify it. |last_drawn_render_surface_layer_list_id| is set to the ID
125 // that marked the render surface layer list generation which last updated 126 // that marked the render surface layer list generation which last updated
126 // these draw properties and determined that this layer will draw itself. 127 // these draw properties and determined that this layer will draw itself.
127 // If these draw properties are not a part of the render surface layer list, 128 // If these draw properties are not a part of the render surface layer list,
128 // or the layer doesn't contribute anything, then this ID will be either out 129 // or the layer doesn't contribute anything, then this ID will be either out
129 // of date or 0. 130 // of date or 0.
130 int last_drawn_render_surface_layer_list_id; 131 int last_drawn_render_surface_layer_list_id;
132
133 int context_id;
131 }; 134 };
132 135
133 } // namespace cc 136 } // namespace cc
134 137
135 #endif // CC_LAYERS_DRAW_PROPERTIES_H_ 138 #endif // CC_LAYERS_DRAW_PROPERTIES_H_
OLDNEW
« no previous file with comments | « no previous file | cc/layers/layer.h » ('j') | cc/layers/layer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698