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

Side by Side Diff: cc/layers/picture_layer_impl.cc

Issue 1812733003: Store recording invalidations in DisplayListRecordingSource, save them via Update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « cc/layers/picture_layer_impl.h ('k') | cc/layers/picture_layer_impl_unittest.cc » ('j') | no next file with comments »
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 #include "cc/layers/picture_layer_impl.h" 5 #include "cc/layers/picture_layer_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 // To avoid an edge case after lost context where the tree is up to date but 646 // To avoid an edge case after lost context where the tree is up to date but
647 // the tilings have not been managed, request an update draw properties 647 // the tilings have not been managed, request an update draw properties
648 // to force tilings to get managed. 648 // to force tilings to get managed.
649 layer_tree_impl()->set_needs_update_draw_properties(); 649 layer_tree_impl()->set_needs_update_draw_properties();
650 } 650 }
651 651
652 skia::RefPtr<SkPicture> PictureLayerImpl::GetPicture() { 652 skia::RefPtr<SkPicture> PictureLayerImpl::GetPicture() {
653 return raster_source_->GetFlattenedPicture(); 653 return raster_source_->GetFlattenedPicture();
654 } 654 }
655 655
656 Region PictureLayerImpl::GetInvalidationRegion() { 656 Region PictureLayerImpl::GetInvalidationRegionForDebugging() {
657 // |invalidation_| gives the invalidation contained in the source frame, but 657 // |invalidation_| gives the invalidation contained in the source frame, but
658 // is not cleared after drawing from the layer. However, update_rect() is 658 // is not cleared after drawing from the layer. However, update_rect() is
659 // cleared once the invalidation is drawn, which is useful for debugging 659 // cleared once the invalidation is drawn, which is useful for debugging
660 // visualizations. This method intersects the two to give a more exact 660 // visualizations. This method intersects the two to give a more exact
661 // representation of what was invalidated that is cleared after drawing. 661 // representation of what was invalidated that is cleared after drawing.
662 return IntersectRegions(invalidation_, update_rect()); 662 return IntersectRegions(invalidation_, update_rect());
663 } 663 }
664 664
665 ScopedTilePtr PictureLayerImpl::CreateTile(const Tile::CreateInfo& info) { 665 ScopedTilePtr PictureLayerImpl::CreateTile(const Tile::CreateInfo& info) {
666 int flags = 0; 666 int flags = 0;
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 1259
1260 bool PictureLayerImpl::IsOnActiveOrPendingTree() const { 1260 bool PictureLayerImpl::IsOnActiveOrPendingTree() const {
1261 return !layer_tree_impl()->IsRecycleTree(); 1261 return !layer_tree_impl()->IsRecycleTree();
1262 } 1262 }
1263 1263
1264 bool PictureLayerImpl::HasValidTilePriorities() const { 1264 bool PictureLayerImpl::HasValidTilePriorities() const {
1265 return IsOnActiveOrPendingTree() && IsDrawnRenderSurfaceLayerListMember(); 1265 return IsOnActiveOrPendingTree() && IsDrawnRenderSurfaceLayerListMember();
1266 } 1266 }
1267 1267
1268 } // namespace cc 1268 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layers/picture_layer_impl.h ('k') | cc/layers/picture_layer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698