OLD | NEW |
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 #include "cc/picture_layer.h" | 5 #include "cc/picture_layer.h" |
6 | 6 |
7 #include "cc/layer_tree_impl.h" | 7 #include "cc/layer_tree_impl.h" |
8 #include "cc/picture_layer_impl.h" | 8 #include "cc/picture_layer_impl.h" |
9 #include "ui/gfx/rect_conversions.h" | 9 #include "ui/gfx/rect_conversions.h" |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 } | 32 } |
33 | 33 |
34 void PictureLayer::pushPropertiesTo(LayerImpl* base_layer) { | 34 void PictureLayer::pushPropertiesTo(LayerImpl* base_layer) { |
35 Layer::pushPropertiesTo(base_layer); | 35 Layer::pushPropertiesTo(base_layer); |
36 | 36 |
37 PictureLayerImpl* layer_impl = static_cast<PictureLayerImpl*>(base_layer); | 37 PictureLayerImpl* layer_impl = static_cast<PictureLayerImpl*>(base_layer); |
38 layer_impl->SetIsMask(is_mask_); | 38 layer_impl->SetIsMask(is_mask_); |
39 layer_impl->CreateTilingSet(); | 39 layer_impl->CreateTilingSet(); |
40 layer_impl->invalidation_.Clear(); | 40 layer_impl->invalidation_.Clear(); |
41 layer_impl->invalidation_.Swap(pile_invalidation_); | 41 layer_impl->invalidation_.Swap(pile_invalidation_); |
| 42 layer_impl->last_impl_frame_number_ = 0; |
42 pile_->PushPropertiesTo(layer_impl->pile_); | 43 pile_->PushPropertiesTo(layer_impl->pile_); |
43 | 44 |
44 layer_impl->SyncFromActiveLayer(); | 45 layer_impl->SyncFromActiveLayer(); |
45 } | 46 } |
46 | 47 |
47 void PictureLayer::setLayerTreeHost(LayerTreeHost* host) { | 48 void PictureLayer::setLayerTreeHost(LayerTreeHost* host) { |
48 Layer::setLayerTreeHost(host); | 49 Layer::setLayerTreeHost(host); |
49 if (host) | 50 if (host) |
50 pile_->SetMinContentsScale(host->settings().minimumContentsScale); | 51 pile_->SetMinContentsScale(host->settings().minimumContentsScale); |
51 } | 52 } |
(...skipping 23 matching lines...) Expand all Loading... |
75 gfx::Rect visible_layer_rect = gfx::ToEnclosingRect( | 76 gfx::Rect visible_layer_rect = gfx::ToEnclosingRect( |
76 gfx::ScaleRect(visibleContentRect(), 1.f / contentsScaleX())); | 77 gfx::ScaleRect(visibleContentRect(), 1.f / contentsScaleX())); |
77 pile_->Update(client_, pile_invalidation_, visible_layer_rect, stats); | 78 pile_->Update(client_, pile_invalidation_, visible_layer_rect, stats); |
78 } | 79 } |
79 | 80 |
80 void PictureLayer::setIsMask(bool is_mask) { | 81 void PictureLayer::setIsMask(bool is_mask) { |
81 is_mask_ = is_mask; | 82 is_mask_ = is_mask; |
82 } | 83 } |
83 | 84 |
84 } // namespace cc | 85 } // namespace cc |
OLD | NEW |