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

Unified Diff: cc/layers/layer.cc

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 side-by-side diff with in-line comments
Download patch
Index: cc/layers/layer.cc
diff --git a/cc/layers/layer.cc b/cc/layers/layer.cc
index 67664e088be7be396dc3318099fdc3ec3f71ee89..4765e8bd691772212daf674619fc690583baa4ae 100644
--- a/cc/layers/layer.cc
+++ b/cc/layers/layer.cc
@@ -61,7 +61,6 @@ Layer::Layer()
use_parent_backface_visibility_(false),
draw_checkerboard_for_missing_tiles_(false),
force_render_surface_(false),
- is_3d_sorted_(false),
transform_is_invertible_(true),
background_color_(0),
opacity_(1.f),
@@ -756,11 +755,11 @@ void Layer::SetDoubleSided(bool double_sided) {
SetNeedsCommit();
}
-void Layer::SetIs3dSorted(bool sorted) {
+void Layer::SetContextId(int id) {
danakj 2014/06/13 19:16:03 can you give this name a bit more "context" (ha ha
troyhildebrandt 2014/06/13 22:56:35 Done.
DCHECK(IsPropertyChangeAllowed());
- if (is_3d_sorted_ == sorted)
+ if ((id == 0 && context_id() == 0) || (id > 0 && context_id() > 0))
return;
- is_3d_sorted_ = sorted;
+ draw_properties_.context_id = id;
danakj 2014/06/13 19:16:03 If we're setting this property with a Set method o
troyhildebrandt 2014/06/13 22:56:35 Done.
SetNeedsCommit();
}
@@ -894,7 +893,7 @@ void Layer::PushPropertiesTo(LayerImpl* layer) {
IsContainerForFixedPositionLayers());
layer->SetPositionConstraint(position_constraint_);
layer->SetShouldFlattenTransform(should_flatten_transform_);
- layer->SetIs3dSorted(is_3d_sorted_);
+ layer->SetContextId(context_id());
layer->SetUseParentBackfaceVisibility(use_parent_backface_visibility_);
if (!layer->TransformIsAnimatingOnImplOnly() && !TransformIsAnimating())
layer->SetTransformAndInvertibility(transform_, transform_is_invertible_);

Powered by Google App Engine
This is Rietveld 408576698